1
0
mirror of https://github.com/akpaevj/onecmonitor.git synced 2026-06-13 21:18:17 +02:00
Files

14 lines
501 B
C#

using OneSwiss.Common.Models;
namespace OneSwiss.Server.Models;
public class Notification : DatabaseObject
{
public NotificationType Type { get; set; }
public DateTime CreatedAt { get; set; }
public string Message { get; set; } = string.Empty;
public NotificationChannel Channel { get; set; }
public string Recipient { get; set; } = string.Empty;
public string Additionalinfo { get; set; } = string.Empty;
public List<string> CustomNotificationsKeys { get; set; } = [];
}