initial commit

This commit is contained in:
2026-06-03 20:24:57 -07:00
commit e2ad15fa64
37 changed files with 3092 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace lxc_songlist.Services;
public sealed record SongListItem(int Id, string Title, IReadOnlyList<string> Tags);
public sealed record AdminSongItem(int Id, string Title, bool IsHidden, IReadOnlyList<string> Tags);
public sealed record AdminTagItem(int Id, string Name, int SongCount);