19 lines
351 B
C#
19 lines
351 B
C#
using System;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Icarus.Models
|
|
{
|
|
public class Album
|
|
{
|
|
[JsonProperty("id")]
|
|
public int Id { get; set; }
|
|
[JsonProperty("title")]
|
|
public string Title { get; set; }
|
|
[JsonProperty("album_artist")]
|
|
public string AlbumArtist { get; set; }
|
|
[JsonProperty("song_count")]
|
|
public int SongCount { get; set; }
|
|
}
|
|
}
|