23c50de468
* .NET 8 migration * Fixed bugs with song management * More cleanup and making some constants * Updated yml * Clean up Removing comments, some cleanup, and moving the startup code into Program.cs * Removing comments * Fixed song deletion issue * Added functionality to delete song directories * Updated README
18 lines
372 B
C#
18 lines
372 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Icarus.Models;
|
|
|
|
public class Artist
|
|
{
|
|
[JsonProperty("artist_id")]
|
|
public int ArtistID { get; set; }
|
|
[JsonProperty("name")]
|
|
[Column("Artist")]
|
|
public string Name { get; set; }
|
|
[JsonProperty("song_count")]
|
|
[NotMapped]
|
|
public int SongCount { get; set; }
|
|
}
|