roadie/Roadie.Api.Library/Models/GenreList.cs
2019-07-03 11:21:29 -05:00

12 lines
No EOL
271 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; }
}
}