123456789101112131415161718192021222324 |
- //
- // NodesModel.h
- // smartRhino
- //
- // Created by tederen on 2019/11/20.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol NodesModel
- @end
- @interface NodesModel : BaseModel
- @property (nonatomic ,strong) NSString *AvatarUrl;
- @property (nonatomic ,strong) NSString *CreatedDate;
- @property (nonatomic ,strong) NSString *Name;
- @property (nonatomic ,strong) NSString *Action;
- @property (nonatomic ,strong) NSString *Message;
- @end
- NS_ASSUME_NONNULL_END
|