12345678910111213141516171819202122232425 |
- //
- // XYVoiceRoomCreateCellModel.m
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/7/7.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import "XYVoiceRoomCreateCellModel.h"
- @implementation XYVoiceRoomCreateCellModel
- + (instancetype)createWithTitle:(NSString *)title placeholder:(NSString *)placeholder isShowMore:(BOOL)isShowMore isShowBottomLine:(BOOL)isShowBottomLine isInput:(BOOL)isInput {
- XYVoiceRoomCreateCellModel *model = XYVoiceRoomCreateCellModel.new;
- model.title = title;
- model.placeholder = placeholder;
- model.isShowMore = isShowMore;
- model.isShowBottomLine = isShowBottomLine;
- model.isInput = isInput;
- model.content = @"";
- model.infoId = @"";
- return model;
- }
- @end
|