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