f4123f53b3
Browser validation for search
16 lines
437 B
C#
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; }
|
|
}
|
|
} |