forked from ddrilling/AsbCloudServer
22 lines
449 B
C#
22 lines
449 B
C#
namespace AsbCloudApp.Data
|
|
{
|
|
public class UserBaseDto
|
|
{
|
|
public string Login { get; set; }
|
|
|
|
public int? Level { 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; }
|
|
}
|
|
}
|