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

20 lines
361 B
C#
Raw Normal View History

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; }
}
}