12345678910111213141516171819202122232425262728 |
- #import <Foundation/Foundation.h>
- @interface HomeLiveGroupModel : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSString *courseGroupId;
- @property (nonatomic, strong) NSString *backgroundPic;
- @property (nonatomic, strong) NSString *avatar;
- @property (nonatomic, assign) double courseGroupPrice;
- @property (nonatomic, strong) NSString *teacherId;
- @property (nonatomic, strong) NSString *teacherName;
- @property (nonatomic, strong) NSString *courseStartTime;
- @property (nonatomic, assign) double courseNum;
- @property (nonatomic, strong) NSString *courseGroupName;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|