13 lines
230 B
C#
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
|
|
}
|
|
} |