JobFormDefinition.cs 463 B

123456789101112131415161718
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. [Caption("Digital Forms")]
  6. public class JobFormDefinition : Entity, IRemotable, IPersistent, ISequenceable, IManyToMany<Job, DigitalForm>, IDigitalForm<Job>,
  7. ILicense<ProjectManagementLicense>
  8. {
  9. [NullEditor]
  10. public JobLink Job { get; set; }
  11. public DigitalFormLink Form { get; set; }
  12. [NullEditor]
  13. public long Sequence { get; set; }
  14. }
  15. }