
- 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
22 lines
267 B
Objective-C
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
|