using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Notifications.Wpf { public class NotificationContent { public string Title { get; set; } public string Message { get; set; } public NotificationType Type { get; set; } } public enum NotificationType { Information, Success, Warning, Error } }