HomeLiveGroupModel.h 886 B

12345678910111213141516171819202122232425262728
  1. //
  2. // HomeLiveGroupModel.h
  3. //
  4. // Created by Steven on 2022/4/24
  5. // Copyright (c) 2022 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface HomeLiveGroupModel : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSString *courseGroupId;
  10. @property (nonatomic, strong) NSString *backgroundPic;
  11. @property (nonatomic, strong) NSString *avatar;
  12. @property (nonatomic, assign) double courseGroupPrice;
  13. @property (nonatomic, strong) NSString *teacherId;
  14. @property (nonatomic, strong) NSString *teacherName;
  15. @property (nonatomic, strong) NSString *courseStartTime;
  16. @property (nonatomic, assign) double courseNum;
  17. @property (nonatomic, strong) NSString *courseGroupName;
  18. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  19. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  20. - (NSDictionary *)dictionaryRepresentation;
  21. @end