-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathProjectActivity.h
48 lines (42 loc) · 2.17 KB
/
ProjectActivity.h
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
// ProjectActivity.h
// Coding_iOS
//
// Created by Ease on 15/5/13.
// Copyright (c) 2015年 Coding. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ProjectTopicActivity.h"
#import "ProjectLineNoteActivity.h"
#import "Projects.h"
#import "FileComment.h"
#import "ProjectFile.h"
#import "ProjectTag.h"
#import "EAMilestone.h"
@class Task;
@class ProjectTopic;
@interface ProjectActivity : NSObject
@property (readwrite, nonatomic, strong) NSNumber *id, *wiki_iid;
@property (readwrite, nonatomic, strong) NSString *target_type, *action, *action_msg, *type, *ref, *ref_type, *ref_path, *pull_request_title, *merge_request_title, *comment_content, *merge_request_path, *pull_request_path, *version, *wiki_title, *wiki_path, *old_name, *ref_name;
@property (strong, nonatomic) NSString *release_title, *release_tag_name, *release_path;
@property (readwrite, nonatomic, strong) User *user, *target_user, *watcher;
@property (readwrite, nonatomic, strong) NSDate *created_at;
@property (readwrite, nonatomic, strong) Task *origin_task, *task;
@property (readwrite, nonatomic, strong) TaskComment *taskComment, *origin_taskComment;
@property (readwrite, nonatomic, strong) Project *project;
@property (readwrite, nonatomic, strong) ProjectTopicActivity *project_topic;
@property (readwrite, nonatomic, strong) File *file;
@property (readwrite, nonatomic, strong) QcTask *qc_task;
@property (readwrite, nonatomic, strong) Depot *depot, *source_depot;
@property (readwrite, nonatomic, strong) NSMutableArray *commits, *labels;
@property (readwrite, nonatomic, strong) NSDictionary *propertyArrayMap;
@property (readwrite, nonatomic, strong) ProjectLineNoteActivity *line_note;
@property (strong, nonatomic) Commit *commit;
@property (strong, nonatomic) FileComment *projectFileComment;
@property (strong, nonatomic) ProjectFile *projectFile;
@property (strong, nonatomic) EAMilestone *milestone;
@property (readwrite, strong, nonatomic) NSString *content;
@property (readwrite, nonatomic, strong) HtmlMedia *htmlMedia;
@property (readonly, nonatomic, strong) NSMutableArray *actionMediaItems, *contentMediaItems;
@property (readonly, nonatomic, strong) NSMutableString *actionStr, *contentStr;
@end