sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Application.Contracts/NotificationRules/CreateUpdateNotificationRuleDto.cs
2026-05-11 12:37:52 +03:00

11 lines
248 B
C#

using System;
namespace Sozsoft.Notifications.NotificationRules;
public class CreateUpdateNotificationRuleDto
{
public string Channel { get; set; }
public Guid NotificationTypeId { get; set; }
public bool IsActive { get; set; }
}