DD.WellWorkover.Cloud/AsbCloudApp/Data/CompanyDto.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

10 lines
209 B
C#

namespace AsbCloudApp.Data
{
public class CompanyDto
{
public int Id { get; set; }
public string Caption { get; set; }
public string CompanyTypeCaption { get; set; }
}
}