Refactoring

This commit is contained in:
kdeng00
2021-12-24 20:51:15 -05:00
parent f8d9c8e4a7
commit 023298c6f8
14 changed files with 147 additions and 164 deletions
+3 -3
View File
@@ -12,12 +12,12 @@ namespace Icarus.Models
[JsonProperty("cover_art_id")]
public int CoverArtID { get; set; }
[JsonProperty("title")]
public string SongTitle { get; set; }
public string SongTitle { get; set; }
[JsonIgnore]
public string ImagePath { get; set; }
public string ImagePath { get; set; }
[JsonProperty("song_id")]
public int SongId { get; set; }
[JsonIgnore]
[JsonIgnore]
[NotMapped]
public List<Song> Songs { get; set; }
}