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

//
//  ProjectTag.m
//  Coding_iOS
//
//  Created by Ease on 15/7/16.
//  Copyright (c) 2015 Coding. All rights reserved.
//

#import "ProjectTag.h"
#import "Login.h"

@implementation ProjectTag

- (instancetype)init
{
    self = [super init];
    if (self) {
        _id = @(0);
        _count = @(0);
        _owner_id = [Login curLoginUser].id;
        _name = @"";
    }
    return self;
}

- (NSString *)color{
    if (_color.length 

Web Proxy Viewer  |  New URL  |  Original Page