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

16 lines
326 B
C#
Raw Normal View History

2018-11-15 04:25:40 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Roadie.Library.Models
{
[Serializable]
public class GenreList : EntityInfoModelBase
{
public DataToken Genre { get; set; }
public int? ReleaseCount { get; set; }
public int? ArtistCount { get; set; }
2018-11-15 04:25:40 +00:00
}
}