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

18 lines
552 B
C#
Raw Normal View History

namespace AsbCloudApp.Data
{
2022-04-11 18:00:34 +05:00
public class UserDto : IId
{
public int Id { get; set; }
public string Login { get; set; }
public string Name { get; set; }
public string Surname { get; set; }
2022-04-11 18:00:34 +05:00
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; }
}
}