Files
2021-02-06 14:11:23 +01:00

20 lines
426 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; }
}
}