roadie/Roadie.Api.Library/Models/GenreList.cs

12 lines
271 B
C#
Raw Normal View History

2018-11-15 04:25:40 +00:00
using System;
namespace Roadie.Library.Models
{
[Serializable]
public class GenreList : EntityInfoModelBase
{
2019-07-03 16:21:29 +00:00
public int? ArtistCount { get; set; }
2018-11-15 04:25:40 +00:00
public DataToken Genre { get; set; }
public int? ReleaseCount { get; set; }
2018-11-15 04:25:40 +00:00
}
2019-07-03 16:21:29 +00:00
}