18 lines
377 B
C#
18 lines
377 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Icarus.Models;
|
|
|
|
public class Genre
|
|
{
|
|
[JsonProperty("genre_id")]
|
|
public int GenreID { get; set; }
|
|
[JsonProperty("genre")]
|
|
[Column("Category")]
|
|
public string GenreName { get; set; }
|
|
[JsonProperty("song_count")]
|
|
[NotMapped]
|
|
public int SongCount { get; set; }
|
|
}
|