JLFacePackgeModel.h 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. //
  2. // JLFacePackgeModel.h
  3. // shiku_im
  4. //
  5. // Created by JayLuo on 2019/12/10.
  6. // Copyright © 2019 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface JLFacePackgeModel : NSObject
  11. @property (nonatomic , assign) NSInteger clollectNumber;
  12. @property (nonatomic , assign) NSInteger createTime;
  13. @property (nonatomic , copy) NSString * desc;
  14. @property (nonatomic , copy) NSString * id;
  15. @property (nonatomic , assign) NSInteger modifyTime;
  16. @property (nonatomic , copy) NSString * name;
  17. @property (nonatomic , copy) NSString * faceName;
  18. @property (nonatomic , copy) NSString * faceId;
  19. @property (nonatomic , assign) NSInteger number;
  20. @property (nonatomic , copy) NSArray * images;
  21. @property (nonatomic , copy) NSArray * path;
  22. @property (nonatomic , copy) NSString * url;
  23. @property (nonatomic , assign) NSInteger type;
  24. @property (nonatomic , assign) NSInteger sortNum;
  25. @end
  26. NS_ASSUME_NONNULL_END