DD.WellWorkover.Cloud/AsbCloudApp/Data/UserDto.cs
Фролов a7962492af fileController search by companyName (not by companyId).
Add UserDto into FileInfoDto.
Add CompanyDto into UserDto.
2021-08-31 18:01:26 +05:00

16 lines
303 B
C#

namespace AsbCloudApp.Data
{
public class UserDto : UserBaseDto
{
public int Id { get; set; }
public int? IdCompany { get; set; }
public int? IdRole { get; set; }
public string Password { get; set; }
public CompanyDto Company { get; set; }
}
}