using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GreenTree.Nachtragsmanagement.Services.Notification { public interface INotificationLogic { /// /// Id of the notification plugin /// Guid Id { get; set; } /// /// Name of the notification plugin /// string Name { get; set; } } }