JXShareFileObject.h 689 B

12345678910111213141516171819202122232425
  1. //
  2. // JXShareFileObject.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 17/7/6.
  6. // Copyright © 2017年 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface JXShareFileObject : NSObject
  10. @property (nonatomic,copy) NSString * createUserName;
  11. @property (nonatomic,copy) NSString * roomId;
  12. @property (nonatomic,copy) NSString * shareId;
  13. @property (nonatomic,copy) NSNumber * size;
  14. @property (nonatomic,copy) NSNumber * time;
  15. @property (nonatomic,copy) NSNumber * type;
  16. @property (nonatomic,copy) NSString * url;
  17. @property (nonatomic,copy) NSString * userId;
  18. @property (nonatomic,copy) NSString * fileName;
  19. +(JXShareFileObject *)shareFileWithDict:(NSDictionary *)dict;
  20. @end