8 lines
229 B
C#
8 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; }
|
|
}
|