Files
lxc-songlist/Models/Song.cs
T
2026-06-03 20:24:57 -07:00

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>();
}