forked from coding/Coding-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathActivenessModel.h
More file actions
28 lines (22 loc) · 805 Bytes
/
ActivenessModel.h
File metadata and controls
28 lines (22 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// ActivenessModel.h
// Coding_iOS
//
// Created by 张达棣 on 16/11/29.
// Copyright © 2016年 Coding. All rights reserved.
//
#import <Foundation/Foundation.h>
@class ActiveDuration, DailyActiveness;
@interface ActivenessModel : NSObject
@property (nonatomic, strong) NSString *total_with_seal_top_line;
@property (nonatomic, strong) NSString *start_date;
@property (nonatomic, strong) ActiveDuration *longest_active_duration;
@property (nonatomic, strong) ActiveDuration *current_active_duration;
@property (nonatomic, strong) NSArray<DailyActiveness *> *dailyActiveness;
@end
@interface ActiveDuration : NSObject
@property (nonatomic, strong) NSString *days, *start_date, *end_date;
@end
@interface DailyActiveness : NSObject
@property (nonatomic, strong) NSString *date, *count;
@end