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