erp-platform/api/modules/Kurs.Notifications/Kurs.Notifications.Application.Contracts/NotificationRules/CreateUpdateNotificationRuleDto.cs
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

8 lines
229 B
C#

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