PictureInfo.h 557 B

1234567891011121314151617181920212223
  1. //
  2. // PictureInfo.h
  3. // FunSDKDemo
  4. //
  5. // Created by XM on 2018/11/16.
  6. // Copyright © 2018年 XM. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "RecordInfo.h"
  10. @interface PictureInfo : NSObject
  11. @property (nonatomic,assign) NSInteger channelNo;
  12. @property (nonatomic,assign) XM_SYSTEM_TIME timeBegin;
  13. @property (nonatomic,assign) XM_SYSTEM_TIME timeEnd;
  14. @property (nonatomic,retain) NSString *fileName;
  15. @property (nonatomic,assign) long fileSize;
  16. @property (nonatomic,assign) NSInteger fileType; //图片类型int值
  17. @end