forked from ddrilling/AsbCloudServer
551c60c4ff
Rename some fields in DB.permission.
17 lines
523 B
C#
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; }
|
|
}
|
|
}
|