using System.Collections.Generic; using System.Linq; using LeafWeb.Core.Entities; namespace LeafWeb.WebCms.Models { public class QueueViewModel { public string ServerDescription { get; set; } public string ServerStatus { get; set; } public IEnumerable Items { get; set; } public string Query { get; set; } public IQueryable CompletedLeafInput { get; set; } } }