123456789101112131415161718192021 |
- //
- // XYLiveNobleListCellModel.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/1/11.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import "XYLiveUserModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface XYLiveNobleListCellModel : XYLiveUserModel
- @property (nonatomic, readwrite, copy) NSString *expirationTime;
- @property (nonatomic, readwrite, copy) NSString *fansName;
- @end
- NS_ASSUME_NONNULL_END
|