using HrynCo.NotificationService.DAL.Abstract.Providers; using HrynCo.NotificationService.Services.Core; using MediatR; namespace HrynCo.NotificationService.Services.EmailChannels.GetUsageSummary; public sealed record GetChannelUsageSummaryQuery : IRequest>>; public sealed record ChannelUsageEntry( Guid ChannelId, string ServiceName, string ChannelType, bool IsActive, int Priority, int? DailyLimit, int? MonthlyLimit, int DailySent, int MonthlySent);