| 1234567891011121314151617181920212223 |
- //
- // HistoryListModel.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/4/10.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface HistoryListModel : NSObject
- @property (nonatomic, strong)NSString *dateStr;
- @property (nonatomic, strong)NSArray *list;
- @property(nonatomic,assign)BOOL groupSelected; // 组选中
- //+(instancetype)modelWithDic:(NSDictionary *)subdic;
- @end
- NS_ASSUME_NONNULL_END
|