forked from ddrilling/AsbCloudServer
18 lines
552 B
C#
18 lines
552 B
C#
namespace AsbCloudApp.Data
|
|
{
|
|
public class UserDto : IId
|
|
{
|
|
public int Id { get; set; }
|
|
public string Login { get; set; }
|
|
public string Name { get; set; }
|
|
public string Surname { get; set; }
|
|
public string Patronymic { get; set; }
|
|
public string Email { get; set; }
|
|
public string Phone { get; set; }
|
|
public string Position { get; set; }
|
|
public int? IdCompany { get; set; }
|
|
public short? IdState { get; set; }
|
|
public CompanyDto Company { get; set; }
|
|
}
|
|
}
|