using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using AsbCloudApp.Data.User; namespace AsbCloudApp.Data { /// /// DTO компании /// public class CompanyDto : IId { /// public int Id { get; set; } /// /// Название /// [Required] [StringLength(50, MinimumLength = 1, ErrorMessage = "Допустимое имя компании от 1 до 50 символов")] public string Caption { get; set; } = null!; /// /// ИД типа компании /// [Required] public int IdCompanyType { get; set; } /// /// Название типа компании /// [StringLength(255, MinimumLength = 1, ErrorMessage = "Допустимое имя типа компании от 1 до 255 символов")] public string? CompanyTypeCaption { get; set; } = null!; } }