RequestData.m
300 Bytes
//
// CurrentAPP.m
// IM_ios_client
//
// Created by 赵世强 on 16/8/11.
// Copyright © 2016年 xiniu. All rights reserved.
//
#import "RequestData.h"
@implementation RequestData
-(instancetype)init{
self = [super init];
if (self) {
self.deviceMac = @"";
}
return self;
}
@end