Add repos + repo interfaces + models + ioc

This commit is contained in:
2026-01-22 15:36:12 +01:00
parent 677e74df10
commit 7bf270985b
31 changed files with 965 additions and 18 deletions

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace skydiveLogs_api.Domain
{
public class StatsForLastMonthByDz
{
public string Label { get; set; }
public string Label2 { get; set; }
public int Nb { get; set; }
public int Id { get; set; }
public User User { get; set; }
}
}