This commit is contained in:
2026-01-23 14:53:58 +01:00
parent eb42aebfd1
commit 111e3f2ef7
4 changed files with 204 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using skydiveLogs_api.Domain;
using System.Collections.Generic;
namespace skydiveLogs_api.DomainBusiness.Interfaces
{
public interface IStatsByAircraftService
{
#region Public Methods
IEnumerable<Statistic> GetStats();
#endregion Public Methods
}
}