12345678910111213141516171819202122 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- [Caption("Digital Forms")]
- public class JobFormDefinition : Entity, IRemotable, IPersistent, ISequenceable, IManyToMany<Job, DigitalForm>, IDigitalForm<Job>,
- ILicense<ProjectManagementLicense>
- {
- [NullEditor]
- public JobLink Job { get; set; }
- [NullEditor]
- [Obsolete("Being Replaced by Form")]
- public QAFormLink QAForm { get; set; }
- public DigitalFormLink Form { get; set; }
- [NullEditor]
- public long Sequence { get; set; }
- }
- }
|