52 lines
773 B
Objective-C
52 lines
773 B
Objective-C
//
|
|
// QXDynamicModel.m
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/5/29.
|
|
//
|
|
|
|
#import "QXDynamicModel.h"
|
|
|
|
@implementation QXDynamicModel
|
|
+(NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
|
return @{
|
|
@"title" : @"QXTopicModel",
|
|
@"like_list":@"QXDynamicLikeModel"
|
|
};
|
|
}
|
|
@end
|
|
|
|
@implementation QXTopicModel
|
|
|
|
|
|
@end
|
|
|
|
|
|
@implementation QXDynamicLikeModel
|
|
|
|
|
|
|
|
@end
|
|
|
|
@implementation QXDynamicCommentModel
|
|
|
|
+(NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
|
return @{
|
|
@"list" : @"QXDynamicCommentListModel",
|
|
};
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation QXDynamicCommentListModel
|
|
|
|
+(NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
|
return @{
|
|
@"replies" : @"QXDynamicCommentListModel",
|
|
};
|
|
}
|
|
|
|
@end
|
|
|
|
|