ee4c988a0d
Remove duplicate IEntity, Entity, ITransaction, IUnitOfWork, EfRepository, EfUnitOfWork, EfTransactionAdapter — now consumed from HrynCo.DAL.Abstract and HrynCo.DAL.EF packages (1.0.1). Ref: IT-0
15 lines
427 B
C#
15 lines
427 B
C#
using HrynCo.DAL.Abstract.Entities;
|
|
|
|
namespace HrynCo.NotificationService.DAL.Abstract.Providers;
|
|
|
|
/// <summary>
|
|
/// Tracks email send counts per EmailChannel per calendar day.
|
|
/// Monthly counts are derived by summing daily records within a month.
|
|
/// </summary>
|
|
public class EmailChannelUsage : Entity
|
|
{
|
|
public Guid ProviderId { get; set; }
|
|
public DateOnly Date { get; set; }
|
|
public int SentCount { get; set; }
|
|
}
|