using System.ComponentModel.DataAnnotations; namespace AsbCloudApp.Data { /// /// DTO компании /// public class CompanyDto : IId { /// public int Id { get; set; } /// /// Название /// [Required] [StringLength(50, MinimumLength = 1)] public string Caption { get; set; } = null!; /// /// ИД типа компании /// public int IdCompanyType { get; set; } /// /// Название типа компании /// [StringLength(30, MinimumLength = 1)] public string CompanyTypeCaption { get; set; } = null!; } }