2023-02-08 14:33:22 +01:00
|
|
|
|
namespace Domain.Entities;
|
|
|
|
|
|
|
|
|
|
public partial class MusicUnlock
|
|
|
|
|
{
|
|
|
|
|
public long MusicId { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
|
2023-02-12 19:40:40 +01:00
|
|
|
|
public string? Artist { get; set; } = string.Empty;
|
2023-02-08 14:33:22 +01:00
|
|
|
|
|
|
|
|
|
public DateTime ReleaseDate { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime EndDate { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool NewFlag { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool UseFlag { get; set; }
|
|
|
|
|
}
|