11 lines
248 B
C#
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; }
|
|
}
|
|
|