mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-17 00:40:06 +01:00
feat: add db model for statistics
This commit is contained in:
9
Entities/Statistic.cs
Normal file
9
Entities/Statistic.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user