using InABox.Core; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PRSDesktop; public class DigitalFormDockModel : BaseObject { [NullEditor] public Guid ID { get; set; } [NullEditor] public Guid FormID { get; set; } [CodeEditor(Visible = Visible.Default, Width = 80)] [EditorSequence(1)] public string Number { get; set; } = ""; [TextBoxEditor(Visible = Visible.Default)] [EditorSequence(2)] public string FormName { get; set; } = ""; [DateTimeEditor(Visible = Visible.Default, Width = 100, Format = "dd MMM yy HH:mm")] [EditorSequence(3)] public DateTime Completed { get; set; } [TextBoxEditor(Visible = Visible.Default, Width = 80, Alignment = Alignment.MiddleCenter)] [EditorSequence(4)] public string CompletedBy { get; set; } = ""; [NullEditor] public Type FormType { get; set; } [NullEditor] public DateTime Processed { get; set; } [NullEditor] public Guid ParentID { get; set; } }