mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
11 lines
212 B
C#
11 lines
212 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Roadie.Library.Models
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public class LabelStatistics
|
|||
|
{
|
|||
|
public int? TotalArtists { get; set; }
|
|||
|
public int? TotalReleases { get; set; }
|
|||
|
}
|
|||
|
}
|