mop-flutter-sdk/ios/Classes/Model/MopCustomMenuModel.m

26 lines
584 B
Dart
Raw Normal View History

//
// 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;
model.menuTitle = self.menuTitle;
model.menuType = self.menuType;
2023-06-09 16:43:26 +08:00
model.menuIconUrl = self.menuIconUrl;
model.menuDarkIconUrl = self.menuDarkIconUrl;
return model;
}
@end