namespace HrynCo.NotificationService.DAL.EF.Entities; internal class ProviderUsageEntity { public Guid Id { get; set; } public Guid ProviderId { get; set; } public DateOnly Date { get; set; } public int SentCount { get; set; } public DateTimeOffset Created { get; set; } public DateTimeOffset? Updated { get; set; } }