Files
SkydiveLogs/Back/skydiveLogs-api.Domain/Statistic.cs

15 lines
274 B
C#

namespace skydiveLogs_api.Domain
{
public class Statistic
{
#region Public Properties
public string Label { get; set; }
public string Label2 { get; set; }
public int Nb { get; set; }
#endregion Public Properties
}
}