roadie/Roadie.Api.Library/Models/GenreList.cs
2019-08-02 15:59:24 -05:00

13 lines
No EOL
316 B
C#

using System;
namespace Roadie.Library.Models
{
[Serializable]
public class GenreList : EntityInfoModelBase
{
public int? ArtistCount { get; set; }
public DataToken Genre { get; set; }
public int? ReleaseCount { get; set; }
public Image Thumbnail { get; set; }
}
}