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_Template")] public partial class ST_Template { [Key] public string CodTempl { get; set; } = ""; public string DescTempl { get; set; } = ""; } }