20 lines
604 B
C#
20 lines
604 B
C#
namespace BeWo.Data.Security
|
|
{
|
|
public class BeWoToolUser
|
|
{
|
|
public long UserOid { get; set; }
|
|
public long EmployeeOid { get; set; }
|
|
public int Status { get; set; }
|
|
public string EMail { get; set; }
|
|
public string Login { get; set; }
|
|
public string Password { get; set; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public string ChatCode { get; set; }
|
|
public string Mobile { get; set; }
|
|
public int IsEmployee { get; set; }
|
|
public string Category { get; set; }
|
|
|
|
}
|
|
}
|