
- 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
481 B
Objective-C
22 lines
481 B
Objective-C
//
|
|
// YMRoomMoreItemModel.m
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/12/11.
|
|
//
|
|
|
|
#import "XPRoomMoreItemModel.h"
|
|
|
|
@implementation XPRoomMoreItemModel
|
|
|
|
+ (XPRoomMoreItemModel *)initWithTitle:(NSString *)title imageName:(NSString *)imageName type:(RoomMoreMenuType)type titleColor:(UIColor *)titleColor {
|
|
XPRoomMoreItemModel * model = [[self alloc] init];
|
|
model.title = title;
|
|
model.imageName = imageName;
|
|
model.type = type;
|
|
model.titleColor = titleColor;
|
|
return model;
|
|
}
|
|
|
|
@end
|