PKTimeModel.h 496 B

123456789101112131415161718192021222324252627
  1. //
  2. // PKTimeModel.h
  3. // BuguLive
  4. //
  5. // Created by 范东 on 2019/1/25.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PKTimeModel : NSObject
  11. //"id": "9",
  12. //"time": "1",
  13. //"sort": "0",
  14. //"addtime": "1548135370"
  15. @property (nonatomic, copy) NSString *id;
  16. @property (nonatomic, copy) NSString *time;
  17. @property (nonatomic, copy) NSString *sort;
  18. @property (nonatomic, copy) NSString *addtime;
  19. @end
  20. NS_ASSUME_NONNULL_END