2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Notifications.NotificationRules;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
|
|
|
|
|
public class CreateUpdateNotificationRuleDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Channel { get; set; }
|
|
|
|
|
|
public string NotificationType { get; set; }
|
|
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|