19 lines
339 B
Objective-C
19 lines
339 B
Objective-C
//
|
|
// ContentLevelUpgradeModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/4/20.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ContentLevelUpgradeModel : PIBaseModel
|
|
@property (nonatomic, copy) NSString *levelName;
|
|
///升到的等级
|
|
@property (nonatomic,assign) NSInteger levelSeq;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|