24 lines
473 B
C#
24 lines
473 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Icarus.Models
|
|
{
|
|
public class Artist
|
|
{
|
|
[JsonProperty("artist_id")]
|
|
public int ArtistID { get; set; }
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
[JsonProperty("song_count")]
|
|
[NotMapped]
|
|
public int SongCount { get; set; }
|
|
|
|
[JsonIgnore]
|
|
[NotMapped]
|
|
public List<Song> Songs { get; set; }
|
|
}
|
|
}
|