1
0
mirror of synced 2024-12-18 09:15:54 +01:00
GC-local-server-rewrite/Domain/Entities/MusicUnlock.cs
2023-02-13 02:40:40 +08:00

19 lines
386 B
C#

namespace Domain.Entities;
public partial class MusicUnlock
{
public long MusicId { get; set; }
public string Title { get; set; } = string.Empty;
public string? Artist { get; set; } = string.Empty;
public DateTime ReleaseDate { get; set; }
public DateTime EndDate { get; set; }
public bool NewFlag { get; set; }
public bool UseFlag { get; set; }
}