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

10 lines
214 B
C#
Raw Normal View History

2021-07-21 15:22:58 +05:00
namespace AsbCloudApp.Data
{
public class CompanyDto: IId
2021-07-21 15:22:58 +05:00
{
public int Id { get; set; }
public string Caption { get; set; }
public string CompanyTypeCaption { get; set; }
2021-07-21 15:22:58 +05:00
}
}