using System.Collections.Generic; using Neo.Legitimate.Data.Models; namespace Neo.Legitimate.Applications.Models { public class VerificationModel { public IEnumerable AutoVerificationTasks { get; set; } public IEnumerable VerificationQueue { get; set; } public IEnumerable BulkVehicleVerificationQueue { get; set; } public string UserName { get; set; } public long UserID { get; set; } } }