Files
AvaloniaDesktopNotifications/DesktopNotifications/Notification.cs
T
Luis von der Eltz e13f197ff0 Cleanup & intro OSX
2021-01-31 15:40:50 +01:00

20 lines
424 B
C#

using System.Collections.Generic;
namespace DesktopNotifications
{
/// <summary>
/// </summary>
public class Notification
{
public Notification()
{
Buttons = new List<(string Title, string ActionId)>();
}
public string Title { get; set; }
public string Body { get; set; }
public List<(string Title, string ActionId)> Buttons { get; }
}
}