Updated Song model to include ArtistId, Updated Artist Model, and partially implemented Artist API endpoint functionality. I left TODO's on where to pick up. #19, #21, #26

This commit is contained in:
amazing-username
2019-05-09 21:51:29 -04:00
parent 287719db42
commit 0c4a1612b1
6 changed files with 229 additions and 16 deletions
+5
View File
@@ -35,5 +35,10 @@ namespace Icarus.Models
public Album Album { get; set; }
[JsonIgnore]
public int AlbumId { get; set; }
[JsonIgnore]
public Artist SongArtist { get; set; }
[JsonIgnore]
public int ArtistId { get; set; }
}
}