namespace DTS.Common.Interactivity { public interface INotification { /// /// Gets or sets the title to use for the notification. /// string Title { get; set; } /// /// Gets or sets the content of the notification. /// object Content { get; set; } } }