using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GreenTree.Nachtragsmanagement.Core.Plugins { public class NotificationJob { /// /// Unique id for the job /// public Guid Id { get; private set; } /// /// System name /// public string SystemName { get; private set; } /// /// Displayed name /// public string Name { get; private set; } /// /// Further description on how this plugin works /// public string Description { get; private set; } /// /// Initializes a new instance of the NotificationJob class /// public NotificationJob(Guid id, string systemName, string name, string description) { Id = id; SystemName = systemName; Name = name; Description = description; } } }