Files
real-e-party-iOS/YuMi/Modules/YMRoom/Model/BoomInfoModel.m
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +08:00

54 lines
655 B
Objective-C

//
// BoomInfoModel.m
// YuMi
//
// Created by P on 2024/9/29.
//
#import "BoomInfoModel.h"
@implementation RoomBoomSignVo
@end
@implementation BoomInfoModel
+ (NSDictionary *)objectClassInArray {
return @{
@"roomBoomSignVoList":RoomBoomSignVo.class
};
}
@end
@implementation roomBoomLevelAwardVo
@end
@implementation roomBoomRankVo
@end
@implementation BoomDetailModel
+ (NSDictionary *)objectClassInArray {
return @{
@"roomBoomRankVos":roomBoomRankVo.class,
@"roomBoomLevelAwardVos":roomBoomLevelAwardVo.class
};
}
@end
@implementation Boom632Model
@end
@implementation BoomGiftModel
@end