Files
LeafWeb/WebCms/Models/QueueViewModel.cs
T
2020-07-16 22:37:24 -04:00

15 lines
418 B
C#

using System.Collections.Generic;
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 Q { get; set; }
public TimeInProgressEstimater TimeInProgressEstimater { get; set; }
}
}