//
// Commit.h
// Coding_iOS
//
// Created by on 14-8-16.
// Copyright (c) 2014 Coding. All rights reserved.
//
#import
@class Committer;
@interface Commit : NSObject
@property (readwrite, nonatomic, strong) NSString *sha, *short_message, *ref, *ref_path;
@property (strong, nonatomic) NSString *fullMessage, *shortMessage, *allMessage, *commitId;
@property (strong, nonatomic) NSDate *commitTime;
@property (strong, nonatomic) NSNumber *notesCount;
@property (readwrite, nonatomic, strong) Committer *committer;
- (NSString *)contentStr;
@end
@interface Committer : NSObject
@property (readwrite, nonatomic, strong) NSString *avatar, *name, *link, *email;
@end