Files
peko-ios/YuMi/Modules/YMMine/View/DressUp/Model/NobleCardModel.h
2023-11-15 17:25:09 +08:00

34 lines
755 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// NobleCardModel.h
// YUMI
//
// Created by YUMI on 2022/1/6.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NobleCardModel : PIBaseModel
///资料卡id
@property (nonatomic, copy) NSString *cardId;
///来源1购买 2官方赠送
@property (nonatomic, assign) NSInteger comeFrom;
///过期时间(天)
@property (nonatomic, assign) NSInteger expireDays;
///过期时间
@property (nonatomic, strong) NSString *expireTime;
///是否过期
@property (nonatomic, assign) BOOL hasExpired;
///资料卡名字
@property (nonatomic, strong) NSString *name;
///资料卡图片
@property (nonatomic, strong) NSString *pic;
///是否使用中
@property (nonatomic, assign) BOOL used;
@end
NS_ASSUME_NONNULL_END