22 lines
470 B
Objective-C
22 lines
470 B
Objective-C
//
|
|
// XPRoomMoreMenuAction.m
|
|
// YuMi
|
|
//
|
|
// Created by Linus on 2025/1/13.
|
|
//
|
|
|
|
#import "XPRoomMoreMenuAction.h"
|
|
|
|
@implementation XPRoomMoreMenuAction
|
|
- (XPRoomMoreItemModel *)toItemModel {
|
|
XPRoomMoreItemModel *model = [[XPRoomMoreItemModel alloc] init];
|
|
model.title = self.title;
|
|
model.imageName = self.imageName;
|
|
model.titleColor = self.titleColor;
|
|
model.imageTintColor = self.imageTintColor;
|
|
model.type = self.type;
|
|
return model;
|
|
}
|
|
|
|
@end
|