Files
LeafWeb/WebCms/Models/QueueViewModel.cs
T

16 lines
441 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 LeafDataQuery Query { get; set; }
public TimeInProgressEstimater TimeInProgressEstimater { get; set; }
}
}