Files
LeafWeb/WebCms/Models/QueueViewModel.cs
T
2017-02-06 14:01:56 -05:00

16 lines
434 B
C#

using System.Collections.Generic;
using System.Linq;
using LeafWeb.Core.Entities;
using LeafWeb.Core.Utility;
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 TimeInProgressEstimater TimeInProgressEstimater { get; set; }
}
}