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