29 lines
694 B
Objective-C
29 lines
694 B
Objective-C
//
|
|
// Music+CoreDataProperties.h
|
|
//
|
|
//
|
|
// Created by 冯硕 on 2022/5/9.
|
|
//
|
|
//
|
|
|
|
#import "Music+CoreDataClass.h"
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface Music (CoreDataProperties)
|
|
|
|
+ (NSFetchRequest<Music *> *)fetchRequest NS_SWIFT_NAME(fetchRequest());
|
|
|
|
@property (nullable, nonatomic, copy) NSString *author;
|
|
@property (nullable, nonatomic, copy) NSString *filePath;
|
|
@property (nullable, nonatomic, copy) NSString *musicArtists;
|
|
@property (nullable, nonatomic, copy) NSString *musicId;
|
|
@property (nullable, nonatomic, copy) NSString *musicName;
|
|
@property (nullable, nonatomic, retain) NSData *songAlbum;
|
|
@property (nullable, nonatomic, copy) NSString *songName;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|