forked from ddrilling/AsbCloudServer
a7962492af
Add UserDto into FileInfoDto. Add CompanyDto into UserDto.
10 lines
209 B
C#
10 lines
209 B
C#
namespace AsbCloudApp.Data
|
|
{
|
|
public class CompanyDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Caption { get; set; }
|
|
public string CompanyTypeCaption { get; set; }
|
|
}
|
|
}
|