1234567891011121314151617181920212223242526272829303132333435 |
- //
- // HomeAlbumModel.h
- //
- // Created by Steven on 2022/4/24
- // Copyright (c) 2022 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface HomeAlbumModel : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSString *internalBaseClassIdentifier;
- @property (nonatomic, assign) NSInteger albumFavoriteCount;
- @property (nonatomic, strong) NSString *topFlag;
- @property (nonatomic, strong) NSString *musicTagNames;
- @property (nonatomic, strong) NSString *updateBy;
- @property (nonatomic, strong) NSString *albumCoverUrl;
- @property (nonatomic, strong) NSString *albumTag;
- @property (nonatomic, assign) NSInteger musicSheetCount;
- @property (nonatomic, assign) NSInteger albumStatus;
- @property (nonatomic, strong) NSString *albumDesc;
- @property (nonatomic, strong) NSString *createBy;
- @property (nonatomic, strong) NSString *createTime;
- @property (nonatomic, strong) NSString *hotFlag;
- @property (nonatomic, assign) NSInteger sortNumber;
- @property (nonatomic, strong) NSString *albumName;
- @property (nonatomic, strong) NSString *updateTime;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|