2021-02-26 13:41:45 +08:00
|
|
|
//
|
|
|
|
// MopCustomMenuModel.m
|
|
|
|
// mop
|
|
|
|
//
|
|
|
|
// Created by Lin on 2021/2/26.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "MopCustomMenuModel.h"
|
|
|
|
|
|
|
|
@implementation MopCustomMenuModel
|
|
|
|
|
|
|
|
- (id)copyWithZone:(NSZone *)zone
|
|
|
|
{
|
|
|
|
MopCustomMenuModel *model = [[MopCustomMenuModel allocWithZone:zone] init];
|
|
|
|
model.menuId = self.menuId;
|
|
|
|
model.menuIconImage = self.menuIconImage;
|
2023-06-09 16:43:26 +08:00
|
|
|
model.menuIconDarkImage = self.menuIconDarkImage;
|
2021-02-26 13:41:45 +08:00
|
|
|
model.menuTitle = self.menuTitle;
|
|
|
|
model.menuType = self.menuType;
|
2023-06-09 16:43:26 +08:00
|
|
|
model.menuIconUrl = self.menuIconUrl;
|
|
|
|
model.menuDarkIconUrl = self.menuDarkIconUrl;
|
2021-02-26 13:41:45 +08:00
|
|
|
return model;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|