NotificationLink.cs 542 B

12345678910111213141516171819202122
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. public class NotificationLink : EntityLink<Notification>
  6. {
  7. [EditorSequence(1)]
  8. [LookupEditor(typeof(Notification))]
  9. public override Guid ID { get; set; }
  10. [EditorSequence(2)]
  11. [DateTimeEditor(Editable = Editable.Hidden)]
  12. public DateTime Created { get; set; }
  13. [EditorSequence(3)]
  14. public EmployeeLink Sender { get; set; }
  15. [EditorSequence(4)]
  16. public EmployeeLink Employee { get; set; }
  17. }
  18. }