0896e92598
Add column to music.db3 Minor fix in Program.cs
21 lines
426 B
C#
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; }
|
|
}
|