forked from ddrilling/AsbCloudServer
10 lines
198 B
C#
10 lines
198 B
C#
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class ContractorDto
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public string Service { get; set; }
|
|||
|
}
|
|||
|
}
|