Files
lct2025-lonolith/LctMonolith/Services/Contracts/IAnalyticsService.cs
2025-10-01 01:56:05 +03:00

9 lines
192 B
C#

using LctMonolith.Services.Models;
namespace LctMonolith.Services;
public interface IAnalyticsService
{
Task<AnalyticsSummary> GetSummaryAsync(CancellationToken ct = default);
}