using System.Collections.Generic; using Neo.Legitimate.Data.Models; using Pilotfish.Afx.Services.Forms.Entities; using Pilotfish.Afx.Services.Comments.Entities; namespace Neo.Legitimate.BulkVehicleVerificationConsole.Models { public class DefaultModel : Pilotfish.Afx.Models.ConsoleModel { public Vw_ApplicationRequestDetails Application { get; set; } public List Vehicles { get; set; } public long entityID { get; set; } public long itemID { get; set; } public long WorkflowInstanceTaskID { get; set; } public bool CanAction { get; set; } } public class VerifiableBulkVehicle { public ApplicationVehicleDetailsInBulk Vehicle { get; set; } public List> Questions { get; set; } }; }