Files
LeafWeb/WebCms/Models/QueueViewModel.cs
T
poprhythm f4123f53b3 Search now works more than once
Browser validation for search
2020-06-21 22:15:41 -04:00

16 lines
437 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 Q { get; set; }
public TimeInProgressEstimater TimeInProgressEstimater { get; set; }
}
}