Music_Player3/relax.offline.mp3.music/MP/MPPositive/Models/Models/MPPositive_CollectionSongModel.swift
2024-08-30 16:26:56 +08:00

29 lines
765 B
Swift
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// MPPositive_CollectionSongModel.swift
// MusicPlayer
//
// Created by Mr.Zhou on 2024/5/21.
//
import UIKit
import CoreData
///Model
@objc(MPPositive_CollectionSongModel)
class MPPositive_CollectionSongModel: NSManagedObject, MP_CoreDataManageableDelegate, MP_CoreDataOperationDelegate {
typealias ManagedObject = MPPositive_CollectionSongModel
///
@NSManaged var coverImage:URL?
///
@NSManaged var title:String?
///
@NSManaged var subtitle:String?
///VideoID
@NSManaged var videoId:String?
///ID
@NSManaged var lyricsID:String?
///ID
@NSManaged var relatedID:String?
///
@NSManaged var addTime:Date?
}