Files

20 lines
445 B
C#

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