19 lines
402 B
Objective-C
19 lines
402 B
Objective-C
//
|
|
// FESVenueEntryCell.h
|
|
// FestivalHelper
|
|
//
|
|
// Created by Hamo Hapic on 04/09/14.
|
|
// Copyright (c) 2014 Senad Uka. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface FESVenueEntryCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic)IBOutlet UILabel *venueName;
|
|
@property (weak, nonatomic)IBOutlet UILabel *venueAddress;
|
|
@property (weak, nonatomic)IBOutlet UILabel *venueCapacity;
|
|
|
|
|
|
@end
|