#74: Add UserID to the Song model

This commit is contained in:
kdeng00
2024-06-16 19:45:33 -04:00
parent ebb15b7cdb
commit d982e44576
+2
View File
@@ -46,6 +46,8 @@ public class Song
public int? CoverArtID { get; set; }
[JsonProperty("date_created")]
public DateTime DateCreated { get; set; }
[JsonProperty("user_id")]
public int UserID { get; set; }
#endregion