JobFormDefinition.cs 577 B

12345678910111213141516171819202122
  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. [NullEditor]
  12. [Obsolete("Being Replaced by Form")]
  13. public QAFormLink QAForm { get; set; }
  14. public DigitalFormLink Form { get; set; }
  15. [NullEditor]
  16. public long Sequence { get; set; }
  17. }
  18. }