namespace WebUI.Models;
///
/// Notification for the Notification System
///
public class Notification
{
///
/// The message of the notification.
///
public string Message { get; set; }
///
/// The type of the notification
///
public NotificationType Type { get; set; }
///
/// The time when the notification was being sent
///
public DateTime Timestamp { get; set; } = DateTime.Now;
///
/// The time in milliseconds while the notification should be displayed.
/// The notification should disappear after this time
///
public int DelayMs { get; set; } = 1500;
}