| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/fusen-github/Coding-iOS/master/Coding_iOS/Models/Register.m | [Back] [Original] |
//
// Register.m
// Coding_iOS
//
// Created by on 14-8-1.
// Copyright (c) 2014 Coding. All rights reserved.
//
#import "Register.h"
@implementation Register
- (instancetype)init
{
self = [super init];
if (self) {
self.email = @"";
self.global_key = @"";
}
return self;
}
- (NSDictionary *)toParams{
return @{@"email" : self.email,
@"global_key" : self.global_key,
@"j_captcha" : _j_captcha? _j_captcha: @"",
@"channel" : [Register channel]};
}
+ (NSString *)channel{
return @"coding-ios";
}
@end
| Web Proxy Viewer | New URL | Original Page |