erp-platform/api/modules/Kurs.Notifications/Kurs.Notifications.Application.Contracts/NotificationRules/CreateUpdateNotificationRuleDto.cs

9 lines
229 B
C#
Raw Normal View History

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