1234567891011121314151617181920 |
- //
- // XYLiveNobleListCellModel.m
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/1/11.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import "XYLiveNobleListCellModel.h"
- @implementation XYLiveNobleListCellModel
- - (instancetype)init {
- if (self = [super init]) {
- _fansName = @"";
- }
- return self;
- }
- @end
|