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

12 lines
248 B
C#
Raw Normal View History

2026-05-11 09:37:52 +00:00
using System;
namespace Sozsoft.Notifications.NotificationRules;
2026-02-24 20:44:16 +00:00
public class CreateUpdateNotificationRuleDto
{
public string Channel { get; set; }
2026-05-11 09:37:52 +00:00
public Guid NotificationTypeId { get; set; }
2026-02-24 20:44:16 +00:00
public bool IsActive { get; set; }
}