using Neo.LegitimateLicences.Common.ViewModels; using Neo.Afx.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using Neo.Afx.Services.Workflows.Entities; namespace Neo.LegitimateLicences.Web.Models.Afx { public class AfxDocumentsModel : ResponsiveAppWorkflowModel { public List Documents { get; set; } public bool DocumentUploadEnabled { get; set; } public long DocumentStoreLocationID { get; set; } public new long EntityID { get; set; } public string UserEmail { get; set; } public string RequiredDocumentsTitle { get; set; } public string OptionalDocumentsTitle { get; set; } } }