Files
AvaloniaDesktopNotifications/DesktopNotifications/ApplicationContext.cs
T
2021-02-06 14:52:41 +01:00

24 lines
388 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace DesktopNotifications
{
/// <summary>
///
/// </summary>
public class ApplicationContext
{
public ApplicationContext(string name)
{
Name = name;
}
/// <summary>
///
/// </summary>
public string Name { get; }
}
}