小说绘上架版本

This commit is contained in:
xtfei2011
2021-02-07 11:24:08 +08:00
commit ee5c1c8b12
1762 changed files with 115892 additions and 0 deletions
@@ -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