Files
QuotifyBE/Entities/Statistic.cs

10 lines
214 B
C#

namespace QuotifyBE.Entities;
public class Statistic
{
public int Id { get; set; }
required public string Label { get; set; }
public int? IValue { get; set; }
public string? SValue { get; set; }
}