Files
yinmeng-ios/xplan-ios/Base/UI/SendGiftView/Model/GiftReceiveInfoModel.m
2021-11-19 14:13:08 +08:00

45 lines
652 B
Objective-C

//
// GiftReceiveInfoModel.m
// xplan-ios
//
// Created by 冯硕 on 2021/11/16.
//
#import "GiftReceiveInfoModel.h"
#import "NSObject+MJExtension.h"
@implementation GiftReceiveUserInfoModel
@end
@implementation GiftLuckyUserInfo
@end
@implementation GiftListsInfo
@end
@implementation GiftLuckyBagGiftsInfo
+ (NSDictionary *)objectClassInArray {
return @{@"giftList":GiftListsInfo.class
};
}
@end
@implementation GiftReceiveInfoModel
+ (NSDictionary *)objectClassInArray {
return @{@"targetUsers":GiftReceiveUserInfoModel.class,
@"displayGift":GiftInfoModel.class,
@"luckyBagGifts":GiftLuckyBagGiftsInfo.class
};
}
@end