NodesModel.h 515 B

123456789101112131415161718192021222324
  1. //
  2. // NodesModel.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/20.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol NodesModel
  11. @end
  12. @interface NodesModel : BaseModel
  13. @property (nonatomic ,strong) NSString *AvatarUrl;
  14. @property (nonatomic ,strong) NSString *CreatedDate;
  15. @property (nonatomic ,strong) NSString *Name;
  16. @property (nonatomic ,strong) NSString *Action;
  17. @property (nonatomic ,strong) NSString *Message;
  18. @end
  19. NS_ASSUME_NONNULL_END