Files
yinmeng-ios/xplan-ios/Base/MVP/Model/BaseModel.h

21 lines
355 B
C
Raw Normal View History

2021-09-07 23:05:43 +08:00
//
// BaseModel.h
// xplan-ios
//
// Created by zu on 2021/9/8.
//
2021-10-26 19:14:01 +08:00
#import "NSObject+MJExtension.h"
2021-09-07 23:05:43 +08:00
NS_ASSUME_NONNULL_BEGIN
2021-10-26 19:14:01 +08:00
@interface BaseModel : NSObject
2021-09-07 23:05:43 +08:00
@property (nonatomic , strong) id data;
@property (nonatomic , assign) NSInteger code;
@property (nonatomic , copy) NSString *message;
@end
NS_ASSUME_NONNULL_END