using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DatabaseModels { [Table("ST_AnagTipi")] public partial class ST_AnagTipi { [Key] public string CodTipo { get; set; } = ""; public string DescTipo { get; set; } = ""; } }