9 lines
229 B
C#
9 lines
229 B
C#
|
|
namespace Kurs.Notifications.NotificationRules;
|
|||
|
|
|
|||
|
|
public class CreateUpdateNotificationRuleDto
|
|||
|
|
{
|
|||
|
|
public string Channel { get; set; }
|
|||
|
|
public string NotificationType { get; set; }
|
|||
|
|
public bool IsActive { get; set; }
|
|||
|
|
}
|