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

10 lines
215 B
C#
Raw Normal View History

2021-07-21 15:22:58 +05:00
namespace AsbCloudApp.Data
{
2021-09-10 11:28:57 +05:00
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
}
}