using System.Collections.Generic; namespace LeafWeb.WebCms.Models { public class QueueViewModel { public string ServerDescription { get; set; } public string ServerStatus { get; set; } public IEnumerable Items { get; set; } } }