using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DbModels { [Table("AnagFLTrans")] public class AnagFLTransModel { [Key, MaxLength(50)] public string CodFluxIn { get; set; } = ""; [MaxLength(50)] public string CodFluxOut { get; set; } = ""; [MaxLength(50)] public string UM { get; set; } = ""; } }