23 lines
306 B
Objective-C
23 lines
306 B
Objective-C
//
|
|
// backAppLoginModel.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/10/13.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "backAppLoginModel.h"
|
|
|
|
@implementation backAppLoginModel
|
|
-(instancetype)init{
|
|
|
|
self=[super init];
|
|
if (self) {
|
|
|
|
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|