修改邀请

This commit is contained in:
2025-12-25 13:01:14 +08:00
parent af5f637d31
commit 9968883bab
9 changed files with 78 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
//
// KBInviteCodeModel.h
// keyBoard
//
#import <Foundation/Foundation.h>
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