19 lines
532 B
Objective-C
19 lines
532 B
Objective-C
//
|
|
// IfishP2PPlayBackListViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/12/6.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "BaseViewController.h"
|
|
#import "IfishCameraModel.h"
|
|
@interface IfishP2PPlayBackListViewController : BaseViewController
|
|
@property (nonatomic,strong) IfishCameraModel *camera;
|
|
@property (weak, nonatomic) IBOutlet UIButton *startBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *endBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *searchBtn;
|
|
|
|
@end
|