14 lines
479 B
C#
14 lines
479 B
C#
namespace lxc_songlist.Models;
|
|
|
|
public sealed class Song
|
|
{
|
|
public int Id { get; set; }
|
|
public string Title { get; set; } = string.Empty;
|
|
public string NormalizedTitle { get; set; } = string.Empty;
|
|
public bool IsHidden { get; set; }
|
|
public DateTimeOffset CreatedAt { get; set; } = DateTimeOffset.UtcNow;
|
|
public DateTimeOffset UpdatedAt { get; set; } = DateTimeOffset.UtcNow;
|
|
|
|
public ICollection<SongTag> SongTags { get; set; } = new List<SongTag>();
|
|
}
|