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
-6
View File
@@ -1,5 +1,3 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using Newtonsoft.Json;
@@ -20,8 +18,4 @@ public class Album
public int SongCount { get; set; }
[JsonProperty("year")]
public int Year { get; set; }
[JsonIgnore]
[NotMapped]
public List<Song> Songs { get; set; }
}