forked from ddrilling/AsbCloudServer
27 lines
619 B
C#
27 lines
619 B
C#
namespace AsbCloudApp.Data
|
|
{
|
|
/// <summary>
|
|
/// DTO компании
|
|
/// </summary>
|
|
public class CompanyDto : IId
|
|
{
|
|
/// <inheritdoc/>
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Название
|
|
/// </summary>
|
|
public string Caption { get; set; }
|
|
|
|
/// <summary>
|
|
/// ИД типа компании
|
|
/// </summary>
|
|
public int IdCompanyType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Название типа компании
|
|
/// </summary>
|
|
public string CompanyTypeCaption { get; set; }
|
|
}
|
|
}
|