using HrynCo.NotificationService.DAL.Abstract.Entities; namespace HrynCo.NotificationService.DAL.EF.Entities; internal class ProviderUsageEntity : Entity { public Guid ProviderId { get; set; } public DateOnly Date { get; set; } public int SentCount { get; set; } }