sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Application.Contracts/NotificationRules/CreateUpdateNotificationRuleDto.cs

10 lines
233 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
namespace Sozsoft.Notifications.NotificationRules;
public class CreateUpdateNotificationRuleDto
{
public string Channel { get; set; }
public string NotificationType { get; set; }
public bool IsActive { get; set; }
}