// // XYWalletListCellModel.h // Starbuds // // Created by 翟玉磊 on 2020/1/13. // Copyright © 2020 翟玉磊. All rights reserved. // #import "BaseObject.h" NS_ASSUME_NONNULL_BEGIN @interface XYWalletListCellModel : BaseObject @property (nonatomic, readwrite, copy) NSString *bgImageName; @property (nonatomic, readwrite, copy) NSString *coin; @property (nonatomic, readwrite, copy) NSString *title; @property (nonatomic, readwrite, copy) NSString *operationStr; @property (nonatomic, readwrite, copy) NSString *introduceTitle; @property (nonatomic, readwrite, copy) NSString *introduce; @property (nonatomic, readwrite, assign) NSInteger walletType; @property (nonatomic, readwrite, assign) CGFloat cellHeight; @end NS_ASSUME_NONNULL_END