MGBaseModel.h 391 B

12345678910111213141516171819202122
  1. //
  2. // MGBaseModel.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2019/6/17.
  6. // Copyright © 2019年 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MGBaseModel : NSObject
  11. @property(nonatomic, strong) NSString *title;
  12. @property(nonatomic, strong) NSString *id;
  13. - (id)initWithDictionary:(NSDictionary *)dic;
  14. @end
  15. NS_ASSUME_NONNULL_END