using Neo.LegitimateLicences.ApplicationRequest.Models.Database; using System; using System.Collections.Generic; using System.Linq; using System.Web; using Neo.Afx.Services.Comments.Entities; namespace Neo.LegitimateLicences.ApplicationRequest { public class ApplicationRequestDashboardModel : ApplicationRequestBaseModel { public List ApplicationStatusSummary { get; set; } public List ApplicationFailedDocumentChecks{ get; set; } public List Tags { get; set; } public bool TagsRequiringReviewIsVisible { get; set; } public bool ViewTagsLinkIsVisible { get; set; } public bool ManageTagsIsVisible { get; set; } public bool EscalateIsVisible { get; set; } public bool TagEditorIsVisible { get; set; } public bool CanAddTags { get; set; } public List TagsRequiringReview { get; set; } public List Comments { get; set; } public bool HasParentApplication { get; set; } } }