Saving changes
This commit is contained in:
@@ -11,7 +11,7 @@ public class AccessLevel
|
||||
[Newtonsoft.Json.JsonProperty("level")]
|
||||
public string? Level { get; set; }
|
||||
[Newtonsoft.Json.JsonProperty("song_id")]
|
||||
public int SongId { get; set; }
|
||||
public Guid SongId { get; set; }
|
||||
#endregion
|
||||
|
||||
#region Methods
|
||||
|
||||
+5
-5
@@ -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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user