19 lines
489 B
Objective-C
19 lines
489 B
Objective-C
//
|
|
// IfishPlaybackViewCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/12/13.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <GWP2P/GWP2P.h>
|
|
|
|
@interface IfishPlaybackViewCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UIImageView *playImageView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *startTimeLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *endTimeLabel;
|
|
@property (nonatomic, strong) GWPlaybackFileModel *model;
|
|
|
|
@end
|