Files
peko-ios/YuMi/Structure/MVP/Model/MedalModel.m
2024-06-25 15:08:14 +08:00

22 lines
267 B
Objective-C

//
// MedalModel.m
// YuMi
//
// Created by P on 2024/6/25.
//
#import "MedalModel.h"
@implementation MedalModel
+ (NSDictionary *)objectClassInArray {
return @{
@"userMedals":UserMedalModel.class
};
}
@end
@implementation UserMedalModel
@end