Files
mapo-core/MP.Data/DatabaseModels/ST_AnagTipi.cs
T
Samuele Locatelli 4f8b46882c Aggiunta modelli ST
2023-10-04 08:55:06 +02:00

22 lines
499 B
C#

using System;
using System.Collections.Generic;
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.DatabaseModels
{
[Table("ST_AnagTipi")]
public partial class ST_AnagTipi
{
[Key]
public string CodTipo { get; set; } = "";
public string DescTipo { get; set; } = "";
}
}