| 1234567891011121314151617181920 |
- //
- // DTTopicModel.h
- // BuguLive
- //
- // Created by bugu on 2019/11/30.
- // Copyright © 2019 xfg. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface DTTopicModel : NSObject
- @property(nonatomic, copy) NSString *id;
- @property(nonatomic, copy) NSString *name;
- @property(nonatomic, copy) NSString *num;
- @end
- NS_ASSUME_NONNULL_END
|