Files
SkydiveLogs/Back/skydiveLogs-api.Domain/Statistic.cs
2021-08-11 22:37:14 +02:00

13 lines
230 B
C#

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