11 lines
278 B
C#
11 lines
278 B
C#
|
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; }
|
||
|
}
|
||
|
}
|