10 lines
233 B
C#
10 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; }
|
|||
|
|
}
|
|||
|
|
|