小说绘上架版本
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// WXYZ_AboutModel.h
|
||||
// WXReader
|
||||
//
|
||||
// Created by Andrew on 2018/10/15.
|
||||
// Copyright © 2018 Andrew. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@class WXYZ_ContactInfoModel;
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface WXYZ_AboutModel : NSObject
|
||||
|
||||
@property (nonatomic, strong) NSArray <WXYZ_ContactInfoModel *> *about;
|
||||
|
||||
@property (nonatomic, copy) NSString *company; // 公司
|
||||
|
||||
@end
|
||||
|
||||
@interface WXYZ_ContactInfoModel : NSObject
|
||||
|
||||
@property (nonatomic, copy) NSString *title;
|
||||
|
||||
@property (nonatomic, copy) NSString *content;
|
||||
|
||||
@property (nonatomic, copy) NSString *action;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
@@ -0,0 +1,25 @@
|
||||
//
|
||||
// WXYZ_AboutModel.m
|
||||
// WXReader
|
||||
//
|
||||
// Created by Andrew on 2018/10/15.
|
||||
// Copyright © 2018 Andrew. All rights reserved.
|
||||
//
|
||||
|
||||
#import "WXYZ_AboutModel.h"
|
||||
|
||||
@implementation WXYZ_AboutModel
|
||||
|
||||
+ (NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
||||
return @{
|
||||
@"about" : [WXYZ_ContactInfoModel class]
|
||||
};
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@implementation WXYZ_ContactInfoModel
|
||||
|
||||
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user