Saving changes

This commit is contained in:
phoenix
2025-04-03 20:35:02 -04:00
parent a091f8c9f9
commit 60b07a7065
17 changed files with 38 additions and 30 deletions
+5 -5
View File
@@ -41,17 +41,17 @@ public class Song
[JsonProperty("disc_count")]
public int DiscCount { get; set; } = 0;
[JsonIgnore]
public int? AlbumId { get; set; }
public Guid? AlbumId { get; set; }
[JsonIgnore]
public int? ArtistId { get; set; }
public Guid? ArtistId { get; set; }
[JsonIgnore]
public int? GenreId { get; set; }
public Guid? GenreId { get; set; }
[JsonIgnore]
public int? CoverArtId { get; set; }
public Guid? CoverArtId { get; set; }
[JsonProperty("date_created")]
public DateTime DateCreated { get; set; }
[JsonProperty("user_id")]
public int UserId { get; set; }
public Guid UserId { get; set; }
#endregion