forked from ddrilling/AsbCloudServer
30 lines
702 B
C#
30 lines
702 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
/// <summary>
|
|
/// DTO компании
|
|
/// </summary>
|
|
public class CompanyDto : IId
|
|
{
|
|
/// <inheritdoc/>
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Название
|
|
/// </summary>
|
|
[Required]
|
|
public string Caption { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// ИД типа компании
|
|
/// </summary>
|
|
public int IdCompanyType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Название типа компании
|
|
/// </summary>
|
|
public string CompanyTypeCaption { get; set; } = null!;
|
|
}
|
|
}
|