12345678910111213141516171819202122232425 |
- //
- // NASMsgModel.h
- // 双子星云手机
- //
- // Created by xd h on 2024/5/16.
- //
- #import "SuperModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface NASDataModel : SuperModel
- @property (nonatomic, copy) NSString * sn;//
- @property (nonatomic, copy) NSString * domainName;//
- @property (nonatomic, copy) NSString * ip;//
- @property (nonatomic, copy) NSString * port;//
- @property (nonatomic, copy) NSString *baseUrl;
- @end
- @interface NASMsgModel : SuperModel
- @property (nonatomic, strong) NASDataModel * data;//
- @end
- NS_ASSUME_NONNULL_END
|