29 lines
475 B
Mathematica
29 lines
475 B
Mathematica
|
|
//
|
||
|
|
// QXNiceGiftRechargeModel.m
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/10/12.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "QXNiceGiftRechargeModel.h"
|
||
|
|
|
||
|
|
@implementation QXNiceGiftRechargeModel
|
||
|
|
|
||
|
|
+(NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
||
|
|
return @{
|
||
|
|
@"gift_list" : @"QXGiftModel"
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
@implementation QXFirstRechargeModel
|
||
|
|
+(NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
||
|
|
return @{
|
||
|
|
@"gift_list" : @"QXGiftModel"
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
@end
|