| 1234567891011121314151617181920212223 |
- //
- // PictureInfo.h
- // FunSDKDemo
- //
- // Created by XM on 2018/11/16.
- // Copyright © 2018年 XM. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "RecordInfo.h"
- @interface PictureInfo : NSObject
- @property (nonatomic,assign) NSInteger channelNo;
- @property (nonatomic,assign) XM_SYSTEM_TIME timeBegin;
- @property (nonatomic,assign) XM_SYSTEM_TIME timeEnd;
- @property (nonatomic,retain) NSString *fileName;
- @property (nonatomic,assign) long fileSize;
- @property (nonatomic,assign) NSInteger fileType; //图片类型int值
- @end
|