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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|