forked from ddrilling/AsbCloudServer
20 lines
361 B
C#
20 lines
361 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|