blob: 72622125ad493c3814c0b99f10686160c687dffa [file] [log] [blame] [edit]
//
// EmployeeTableViewCell.h
// StoreMadApp
//
// Created by Andrew Smith on 7/8/13.
// Copyright (c) 2013 Burgess. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface EmployeeTableViewCell : UITableViewCell
@property (nonatomic, weak) IBOutlet UILabel *firstNameLabel;
@property (nonatomic, weak) IBOutlet UILabel *lastNameLabel;
@property (nonatomic, weak) IBOutlet UILabel *hireDateLabel;
@end