Files
LeafWeb/WebCms/Models/QueueViewModel.cs
T
2017-02-03 22:26:00 -05:00

15 lines
399 B
C#

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<LeafInput> Items { get; set; }
public string Query { get; set; }
public IQueryable<LeafInput> CompletedLeafInput { get; set; }
}
}