DD.WellWorkover.Cloud/AsbCloudApp/Data/CompanyDto.cs

31 lines
719 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
namespace AsbCloudApp.Data
2021-07-21 15:22:58 +05:00
{
#nullable enable
2022-06-01 17:52:26 +05:00
/// <summary>
/// DTO компании
/// </summary>
2021-09-10 11:28:57 +05:00
public class CompanyDto : IId
2021-07-21 15:22:58 +05:00
{
2022-06-01 17:52:26 +05:00
/// <inheritdoc/>
2021-07-21 15:22:58 +05:00
public int Id { get; set; }
2022-06-01 17:52:26 +05:00
/// <summary>
/// Название
/// </summary>
[Required]
public string Caption { get; set; } = null!;
2022-06-01 17:52:26 +05:00
/// <summary>
/// ИД типа компании
/// </summary>
2022-01-13 14:34:58 +05:00
public int IdCompanyType { get; set; }
2022-06-01 17:52:26 +05:00
/// <summary>
/// Название типа компании
/// </summary>
public string CompanyTypeCaption { get; set; } = null!;
2021-07-21 15:22:58 +05:00
}
}