DD.WellWorkover.Cloud/AsbCloudApp/Data/UserDto.cs
Фролов 551c60c4ff Add/refactor services for permissions authorization model.
Rename some fields in DB.permission.
2021-12-11 16:46:04 +05:00

17 lines
523 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 CompanyDto Company { get; set; }
}
}