Files
Disco/Disco.Models/BI/Search/UserSearchResultItem.cs
T
Gary Sharp 3f63281dc4 Feature: Job Queues
Also UI style, theme and element changes
2014-02-03 14:50:08 +11:00

14 lines
364 B
C#

namespace Disco.Models.BI.Search
{
public class UserSearchResultItem
{
public int AssignedDevicesCount { get; set; }
public string DisplayName { get; set; }
public string GivenName { get; set; }
public string Id { get; set; }
public int JobCount { get; set; }
public string Surname { get; set; }
}
}