21 lines
271 B
Objective-C
21 lines
271 B
Objective-C
//
|
|
// Music+CoreDataClass.h
|
|
//
|
|
//
|
|
// Created by 冯硕 on 2022/5/9.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface Music : NSManagedObject
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
#import "Music+CoreDataProperties.h"
|