sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Application.Contracts/NotificationRules/CreateUpdateNotificationRuleDto.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

9 lines
233 B
C#

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