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