web-app-template/backend/app/app.Share.Common/UserSelectCriterion.cs

10 lines
244 B
C#
Raw Normal View History

2022-02-20 13:43:25 +01:00
using System;
namespace app.Share.Common
{
public class UserSelectCriterion : SelectCriterion
{
public string Name { get; set; }
public string DomainName { get; set; }
public string HostName { get; set; }
}
}