Infrastructure upgrades

This commit is contained in:
daniel-c-harvey
2025-09-04 19:58:00 -04:00
parent 5e02d004e3
commit 9de2063ea3
11 changed files with 559 additions and 192 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
public class TrackDto
{
public long Id { get; set; }
public string MediaPath { get; set; }
public required string EntryKey { get; set; }
public string TrackName { get; set; }
public string Artist { get; set; }
public string? Album { get; set; }
+1 -1
View File
@@ -3,7 +3,7 @@
public class TrackEntity
{
public long Id { get; set; }
public required string MediaPath { get; set; }
public required string EntryKey { get; set; }
public required string TrackName { get; set; }
public required string Artist { get; set; }
public string? Album { get; set; }