#74: Add UserID to the Song model #98

Merged
kdeng00 merged 5 commits from tsk-74 into master 2024-06-19 15:41:56 -04:00
Showing only changes of commit d982e44576 - Show all commits
+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