1
0
mirror of synced 2024-12-18 17:25:54 +01:00
GC-local-server-rewrite/Domain/Entities/MusicUnlock.cs

19 lines
385 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; }
}