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

32 lines
802 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]
[StringLength(50, MinimumLength = 1)]
public string Caption { get; set; } = null!;
/// <summary>
/// ИД типа компании
/// </summary>
public int IdCompanyType { get; set; }
/// <summary>
/// Название типа компании
/// </summary>
[StringLength(30, MinimumLength = 1)]
public string CompanyTypeCaption { get; set; } = null!;
}
}