[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/gitroc/Coding-iOS/master/Coding_iOS/Models/MRPRBaseInfo.m [Back]  [Original]

//
//  MRPRBaseInfo.m
//  Coding_iOS
//
//  Created by Ease on 15/6/2.
//  Copyright (c) 2015 Coding. All rights reserved.
//

#import "MRPRBaseInfo.h"

@implementation MRPRBaseInfo
- (instancetype)init
{
    self = [super init];
    if (self) {
        _propertyArrayMap = [NSDictionary dictionaryWithObjectsAndKeys:
                             @"ProjectLineNote", @"discussions", nil];
        _contentHeight = 1;
    }
    return self;
}
- (MRPR *)mrpr{
    if (_pull_request) {
        return _pull_request;
    }else{
        return _merge_request;
    }
}

- (void)setPull_request_description:(NSString *)pull_request_description{
    if (pull_request_description.length 

Web Proxy Viewer  |  New URL  |  Original Page