using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace AsbCloudDb.Model.GTR { [Table("t_wits_string"), Comment("таблица данных ГТИ с типом значения string")] public class WitsStr: WitsBase { [Column("value")] [StringLength(64)] public string? Value { get; set; } } }