RecordInfo.m 278 B

1234567891011121314151617181920
  1. //
  2. // RecordInfo.m
  3. // XMEye
  4. //
  5. // Created by Wangchaoqun on 15/1/20.
  6. // Copyright (c) 2015年 Megatron. All rights reserved.
  7. //
  8. #import "RecordInfo.h"
  9. @implementation RecordInfo
  10. - (instancetype)init
  11. {
  12. self = [super init];
  13. if (self) {
  14. }
  15. return self;
  16. }
  17. @end