| 12345678910111213141516171819202122232425262728 | ////  HomeLiveGroupModel.h////  Created by Steven  on 2022/4/24//  Copyright (c) 2022 __MyCompanyName__. All rights reserved.//#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
 |