XYLiveNobleListCellModel.m 337 B

1234567891011121314151617181920
  1. //
  2. // XYLiveNobleListCellModel.m
  3. // Starbuds
  4. //
  5. // Created by 翟玉磊 on 2020/1/11.
  6. // Copyright © 2020 翟玉磊. All rights reserved.
  7. //
  8. #import "XYLiveNobleListCellModel.h"
  9. @implementation XYLiveNobleListCellModel
  10. - (instancetype)init {
  11. if (self = [super init]) {
  12. _fansName = @"";
  13. }
  14. return self;
  15. }
  16. @end