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

11 lines
278 B
C#
Raw Permalink Normal View History

2022-02-20 13:43:25 +01:00
namespace app.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; }
}
}