123456789101112131415161718192021222324252627282930313233 |
- //
- // LiveLessonModel.h
- //
- // Created by Steven on 2022/4/20
- // 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 *courseType;
- @property (nonatomic, strong) NSString *subjectId;
- @property (nonatomic, strong) NSString *courseId;
- @property (nonatomic, strong) NSString *avatar;
- @property (nonatomic, strong) NSString *userId;
- @property (nonatomic, strong) NSString *endTime;
- @property (nonatomic, strong) NSString *courseGoupId;
- @property (nonatomic, strong) NSString *cover;
- @property (nonatomic, strong) NSString *subjectName;
- @property (nonatomic, strong) NSString *payCount;
- @property (nonatomic, strong) NSString *startTime;
- @property (nonatomic, strong) NSString *status;
- @property (nonatomic, strong) NSString *name;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|