feat: add db model for statistics

This commit is contained in:
2025-07-21 11:16:26 +02:00
parent ddfab4dac1
commit db6f57830a
5 changed files with 299 additions and 0 deletions

9
Entities/Statistic.cs Normal file
View File

@@ -0,0 +1,9 @@
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; }
}