1234567891011121314151617181920212223242526272829303132333435 |
- //
- // LiveLessonModel.h
- //
- // Created by Steven on 2022/5/10
- // Copyright (c) 2022 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface LiveLessonModel : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSString *classDate;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *realName;
- @property (nonatomic, strong) NSString *imGroupId;
- @property (nonatomic, strong) NSString *subjectId;
- @property (nonatomic, strong) NSString *courseId;
- @property (nonatomic, strong) NSString *userId;
- @property (nonatomic, strong) NSString *avatar;
- @property (nonatomic, strong) NSString *endTime;
- @property (nonatomic, strong) NSString *subjectName;
- @property (nonatomic, strong) NSString *cover;
- @property (nonatomic, strong) NSString *courseGoupId;
- @property (nonatomic, strong) NSString *payCount;
- @property (nonatomic, strong) NSString *startTime;
- @property (nonatomic, strong) NSString *status;
- @property (nonatomic, strong) NSString *courseType;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|