You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-13 21:18:17 +02:00
11 lines
349 B
C#
11 lines
349 B
C#
using OneSwiss.Common.Models;
|
|
|
|
namespace OneSwiss.Server.Models;
|
|
|
|
public class NotificationRecipient : DatabaseObject
|
|
{
|
|
public NotificationChannel Channel { get; set; }
|
|
public string SendTo { get; set; }
|
|
public List<NotificationType> NotificationTypes { get; set; }
|
|
public List<CustomNotification> CustomNotifications { get; set; }
|
|
} |