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
11 lines
263 B
C#
11 lines
263 B
C#
using HrynCo.DAL.Abstract.Entities;
|
|
|
|
namespace HrynCo.NotificationService.DAL.EF.Entities;
|
|
|
|
internal class EmailChannelUsageEntity : Entity
|
|
{
|
|
public Guid ProviderId { get; set; }
|
|
public DateOnly Date { get; set; }
|
|
public int SentCount { get; set; }
|
|
}
|