using HrynCo.NotificationService.DAL.Abstract.Entities; namespace HrynCo.NotificationService.DAL.Abstract.Providers; /// /// Tracks email send counts per EmailChannel per calendar day. /// Monthly counts are derived by summing daily records within a month. /// public class EmailChannelUsage : Entity { public Guid ProviderId { get; set; } public DateOnly Date { get; set; } public int SentCount { get; set; } }