BogoSearchHistoryModel.h 441 B

12345678910111213141516171819202122
  1. //
  2. // BogoSearchHistoryModel.h
  3. // BuguLive
  4. //
  5. // Created by Mac on 2021/9/27.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface BogoSearchHistoryModel : NSObject
  11. @property(nonatomic, copy) NSString *id;
  12. @property(nonatomic, copy) NSString *uid;
  13. @property(nonatomic, copy) NSString *title;
  14. @property(nonatomic, copy) NSString *addtime;
  15. @end
  16. NS_ASSUME_NONNULL_END