// // KBInviteCodeModel.h // keyBoard // #import NS_ASSUME_NONNULL_BEGIN /// 邀请码信息 @interface KBInviteCodeModel : NSObject @property (nonatomic, copy, nullable) NSString *inviteCode; @property (nonatomic, copy, nullable) NSString *h5Link; @property (nonatomic, assign) NSInteger status; @property (nonatomic, assign) NSInteger usedCount; @property (nonatomic, strong, nullable) NSNumber *maxUses; @property (nonatomic, copy, nullable) NSString *expiresAt; @end NS_ASSUME_NONNULL_END