RecentCourseModel.h 926 B

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