This repository has been archived on 2023-02-13. You can view files and clone it, but cannot push or open issues or pull requests.
gswi-server/gswi.Share.Common/AuthUserSelectCriterion.cs

11 lines
279 B
C#
Raw Permalink Normal View History

2022-02-20 19:04:11 +01:00
namespace gswi.Share.Common
{
public class AuthUserSelectCriterion : SelectCriterion
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string EMail { get; set; }
public int? AuthRole { get; set; }
}
}