using InABox.Core; using System; using System.Collections.Generic; using System.Text; namespace Comal.Classes { public class DataEntryDocument : Entity, IRemotable, IPersistent, ILicense { [EditorSequence(1)] public DocumentLink Document { get; set; } [EditorSequence(2)] public DataEntryTagLink Tag { get; set; } [EditorSequence(3)] public EmployeeLink Employee { get; set; } [EditorSequence(4)] [MemoEditor] public string Note { get; set; } [NullEditor] public Guid EntityID { get; set; } [NullEditor] public DateTime Archived { get; set; } = DateTime.MinValue; [NullEditor] public byte[]? Thumbnail { get; set; } } }