JXHelperModel.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // JXHelperModel.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 2019/5/28.
  6. // Copyright © 2019年 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface JXHelperModel : NSObject
  11. @property (nonatomic, strong) NSString *desc;
  12. @property (nonatomic, strong) NSString *developer;
  13. @property (nonatomic, strong) NSString *iconUrl;
  14. @property (nonatomic, strong) NSString *helperId;
  15. @property (nonatomic, strong) NSString *link;
  16. @property (nonatomic, strong) NSString *name;
  17. @property (nonatomic, strong) NSString *openAppId;
  18. @property (nonatomic, strong) NSString *urlScheme;
  19. @property (nonatomic, assign) int type;
  20. // other
  21. @property (nonatomic, strong) NSString *appName;
  22. @property (nonatomic, strong) NSString *subTitle;
  23. @property (nonatomic, strong) NSString *url;
  24. @property (nonatomic, strong) NSString *imageUrl;
  25. @property (nonatomic, strong) NSString *appIcon;
  26. @property (nonatomic, strong) NSString *downloadUrl;
  27. @property (nonatomic, strong) NSString *title;
  28. - (void)getDataWithDict:(NSDictionary *)dict;
  29. + (instancetype)initWithDict:(NSDictionary *)dict;
  30. @end
  31. NS_ASSUME_NONNULL_END