DD.WellWorkover.Cloud/AsbCloudApp/Data/UserDto.cs

18 lines
567 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; }
}
}