Inject framework HttpClient to support prerendering behavior on server instead of baking in the HttpClient on the client project

This commit is contained in:
daniel-c-harvey
2025-09-04 09:48:58 -04:00
parent 9124e82e24
commit d556d32829
9 changed files with 59 additions and 33 deletions
+3 -3
View File
@@ -3,9 +3,9 @@
public class TrackEntity
{
public long Id { get; set; }
public string MediaPath { get; set; }
public string TrackName { get; set; }
public string Artist { get; set; }
public required string MediaPath { get; set; }
public required string TrackName { get; set; }
public required string Artist { get; set; }
public string? Album { get; set; }
public string? Genre { get; set; }
public DateOnly? ReleaseDate { get; set; }