HistoryListModel.h 467 B

1234567891011121314151617181920212223
  1. //
  2. // HistoryListModel.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/4/10.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface HistoryListModel : NSObject
  11. @property (nonatomic, strong)NSString *dateStr;
  12. @property (nonatomic, strong)NSArray *list;
  13. @property(nonatomic,assign)BOOL groupSelected; // 组选中
  14. //+(instancetype)modelWithDic:(NSDictionary *)subdic;
  15. @end
  16. NS_ASSUME_NONNULL_END