using System; using InABox.Core; namespace Comal.Classes { [Caption("Digital Forms")] public class JobFormDefinition : Entity, IRemotable, IPersistent, ISequenceable, IManyToMany, IDigitalForm, ILicense { [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; } } }