You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
586 B
39 lines
586 B
4 years ago
|
//
|
||
|
// WXYZ_TaskModel.m
|
||
|
// WXReader
|
||
|
//
|
||
|
// Created by Andrew on 2018/11/15.
|
||
|
// Copyright © 2018 Andrew. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "WXYZ_TaskModel.h"
|
||
|
|
||
|
@implementation WXYZ_TaskModel
|
||
|
|
||
|
+ (NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
||
|
return @{@"task_menu" : [WXYZ_TaskMenuModel class]};
|
||
|
}
|
||
|
|
||
|
|
||
|
@end
|
||
|
|
||
|
@implementation WXYZ_SignInfoModel
|
||
|
|
||
|
|
||
|
@end
|
||
|
|
||
|
@implementation WXYZ_TaskMenuModel
|
||
|
|
||
|
+ (NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
||
|
return @{@"task_list" : [WXYZ_TaskListModel class]};
|
||
|
}
|
||
|
|
||
|
|
||
|
@end
|
||
|
|
||
|
|
||
|
@implementation WXYZ_TaskListModel
|
||
|
|
||
|
|
||
|
@end
|