Files
LeafWeb/WebCms/Models/QueueViewModel.cs
T
2017-01-27 14:07:36 -05:00

12 lines
280 B
C#

using System.Collections.Generic;
using LeafWeb.Core.Entities;
namespace LeafWeb.WebCms.Models
{
public class QueueViewModel
{
public string ServerDescription { get; set; }
public string ServerStatus { get; set; }
public IEnumerable<LeafInput> Items { get; set; }
}
}