1
0
mirror of synced 2024-11-24 06:20:12 +01:00
GC-local-server-rewrite/Domain/Entities/MusicUnlock.cs
asesidaa 0896e92598 Fix new and calc flag for music
Add column to music.db3
Minor fix in Program.cs
2023-11-05 18:35:26 +08:00

21 lines
426 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; }
public bool CalcFlag { get; set; }
}