erp-platform/api/modules/Erp.Notifications/Erp.Notifications.Application.Contracts/NotificationRules/CreateUpdateNotificationRuleDto.cs
2025-11-11 22:49:52 +03:00

9 lines
229 B
C#

namespace Erp.Notifications.NotificationRules;
public class CreateUpdateNotificationRuleDto
{
public string Channel { get; set; }
public string NotificationType { get; set; }
public bool IsActive { get; set; }
}