27 lines
671 B
Objective-C
27 lines
671 B
Objective-C
//
|
|
// MaskTestResult.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/13.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <JSONModel/JSONModel.h>
|
|
|
|
@interface MaskTestResult : JSONModel
|
|
|
|
@property(nonatomic,copy) NSString *dryness;
|
|
@property(nonatomic,copy) NSString *drynessPercent;
|
|
@property(nonatomic,copy) NSString *mask;
|
|
@property(nonatomic,copy) NSString *minute;
|
|
@property(nonatomic,copy) NSString *oiliness;
|
|
@property(nonatomic,copy) NSString *oilinessPercent;
|
|
//保湿0无1有
|
|
@property(nonatomic) int moisture;
|
|
//美白0无1有
|
|
@property(nonatomic) int whitening;
|
|
//提拉紧致0无1有
|
|
@property(nonatomic) int liftingTightening;
|
|
|
|
@end
|