forked from ddrilling/AsbCloudServer
10 lines
202 B
C#
10 lines
202 B
C#
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class CompanyDto
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string Caption { get; set; }
|
|||
|
public string CompanyType { get; set; }
|
|||
|
}
|
|||
|
}
|