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
538 B
C#
15 lines
538 B
C#
using HrynCo.DAL.Abstract.Entities;
|
|
|
|
namespace HrynCo.NotificationService.DAL.Abstract.Providers;
|
|
|
|
public class EmailChannel : Entity
|
|
{
|
|
public required string ServiceName { get; set; }
|
|
public int Priority { get; set; }
|
|
public EmailChannelType EmailChannelType { get; set; }
|
|
public required EmailChannelSettings Settings { get; set; }
|
|
public int? DailyLimit { get; set; }
|
|
public int? MonthlyLimit { get; set; }
|
|
public int WarnThresholdPercent { get; set; } = 90;
|
|
public bool IsActive { get; set; } = true;
|
|
} |