26 lines
636 B
C
26 lines
636 B
C
![]() |
//
|
||
|
// PretendUpwardsProcurementMatrix.h
|
||
|
// YUMI
|
||
|
//
|
||
|
// Created by YUMI on 2022/7/28.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface PretendUpwardsProcurementMatrix : NSObject
|
||
|
|
||
|
@property (nonatomic, strong) NSString *pic;
|
||
|
@property (nonatomic, strong) NSString *dressUpId;
|
||
|
@property (nonatomic, copy) NSString *dressId;
|
||
|
@property (nonatomic, strong) NSString *name;
|
||
|
@property (nonatomic, assign) NSInteger dressDay;
|
||
|
@property (nonatomic, assign) NSInteger dressPrice;
|
||
|
@property (nonatomic, assign) NSInteger dressType;
|
||
|
@property (nonatomic, assign) NSInteger dressLimitStatus;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|