mirror of
https://github.com/sphildreth/roadie
synced 2024-11-26 22:20:21 +00:00
19 lines
583 B
C#
19 lines
583 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Roadie.Library.Models
|
|
{
|
|
[Serializable]
|
|
public class ArtistList : EntityInfoModelBase
|
|
{
|
|
public DataToken Artist { get; set; }
|
|
public short? Rating { get; set; }
|
|
public short? UserArtistRating { get; set; }
|
|
public int? ArtistReleaseCount { get; set; }
|
|
public int? ArtistTrackCount { get; set; }
|
|
public int? ArtistPlayedCount { get; set; }
|
|
public string ThumbnailUrl { get; set; }
|
|
public int? ThumbnailSize { get; set; }
|
|
}
|
|
}
|