23 lines
414 B
Objective-C
23 lines
414 B
Objective-C
//
|
|
// YMGiftCountModel.m
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/11/11.
|
|
//
|
|
|
|
#import "XPGiftCountModel.h"
|
|
|
|
@implementation XPGiftCountModel
|
|
|
|
|
|
+ (instancetype)initCountModel:(NSString *)title giftNumber:(NSString *)giftNumber {
|
|
XPGiftCountModel * model = [[XPGiftCountModel alloc] init];
|
|
model.title = title;
|
|
model.giftNumber = giftNumber;
|
|
model.isTotal = NO;
|
|
model.isCustomCount = NO;
|
|
return model;
|
|
}
|
|
|
|
@end
|