| 1234567891011121314151617181920 |
- //
- // RecordInfo.m
- // XMEye
- //
- // Created by Wangchaoqun on 15/1/20.
- // Copyright (c) 2015年 Megatron. All rights reserved.
- //
- #import "RecordInfo.h"
- @implementation RecordInfo
- - (instancetype)init
- {
- self = [super init];
- if (self) {
- }
- return self;
- }
- @end
|