using Neo.LegitimateLicences.Common.Helpers; using Neo.LegitimateLicences.Common.ViewModels; using Neo.LegitimateLicences.Data.Models; using Neo.Afx.Services.Documents.Entities; using System.Collections.Generic; namespace Neo.LegitimateLicences.VerificationConsole { public class DocumentVerificationModel : ResponsiveAppBaseModel { public new long ItemID { get; set; } public long DocumentID { get; set; } public long DocumentTypeID { get; set; } public long DocumentStoreLocationID { get; set; } public long WorkflowInstanceTaskID { get; set; } public string DocumentName { get; set; } public List DocumentChecks { get; set; } } }