Introduce application context

This commit is contained in:
Luis von der Eltz
2021-02-06 14:52:41 +01:00
parent 97a3efc2a6
commit fd461bb9d4
7 changed files with 114 additions and 29 deletions
@@ -0,0 +1,23 @@
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; }
}
}