16 lines
296 B
C#
16 lines
296 B
C#
namespace DesktopNotifications
|
|
{
|
|
/// <summary>
|
|
/// </summary>
|
|
public class ApplicationContext
|
|
{
|
|
public ApplicationContext(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
|
|
/// <summary>
|
|
/// </summary>
|
|
public string Name { get; }
|
|
}
|
|
} |