mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 04:33:16 +00:00
12 lines
No EOL
271 B
C#
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; }
|
|
}
|
|
} |