statistics service

This commit is contained in:
Daniel Balk
2023-04-06 20:05:44 +02:00
parent febab426b3
commit a7ae2bf7ba
8 changed files with 1058 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace Moonlight.App.Database.Entities;
public class StatisticsData
{
public int Id { get; set; }
public string Chart { get; set; }
public double Value { get; set; }
}