ifish/Ifish/models/ifishUserModel/IfishUserAsset.h

33 lines
776 B
Objective-C

//
// IfishUserAsset.h
// Ifish
//
// Created by imac on 17/3/7.
// Copyright © 2017年 lianlian. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface IfishUserAsset : NSObject
//签到天数
@property (nonatomic)NSInteger keepSigninNum;
@property (nonatomic,copy)NSString *lastLoginDate;
//今天是否签到
@property (nonatomic) BOOL toDaySignin;
//等级
@property (nonatomic,copy) NSString *gradeNum;
@property (nonatomic,copy) NSString *gradeValue;
@property (nonatomic,copy) NSString *gradeName;
//金币
@property (nonatomic) NSInteger goldValue;
//是否砸过金蛋
@property (nonatomic) BOOL isHitGoldenEgg;
//增加的经验值或金币值
@property (nonatomic) NSInteger addValue;
-(instancetype)initWithDict:(NSDictionary *)dict;
@end