More cleanup and making some constants

This commit is contained in:
kdeng00
2024-06-12 20:00:11 -04:00
parent 76e31b4db5
commit 23b3c6ca73
8 changed files with 11 additions and 60 deletions
-5
View File
@@ -1,5 +1,3 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using Newtonsoft.Json;
@@ -16,7 +14,4 @@ public class Artist
[JsonProperty("song_count")]
[NotMapped]
public int SongCount { get; set; }
[JsonIgnore]
[NotMapped]
public List<Song> Songs { get; set; }
}