| 12345678910111213141516171819202122232425 |
- //
- // MOSignPrizes.h
- //
- // Created by SuperCabbage on 2024/5/31
- // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOSignPrizes : NSObject <NSCoding, NSCopying>
- @property (nonatomic, assign) double amount;
- @property (nonatomic, strong) NSString *icon;
- @property (nonatomic, assign) double type;
- @property (nonatomic, strong) NSString *name;
- /** TAG 标签.(0就是没有 1=first,2=value) */
- @property (nonatomic, assign) double tag;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|