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

11 lines
212 B
C#
Raw Normal View History

2018-11-06 02:41:51 +00:00
using System;
namespace Roadie.Library.Models
{
[Serializable]
public class LabelStatistics
{
public int? TotalArtists { get; set; }
public int? TotalReleases { get; set; }
}
}