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

24 lines
606 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_AnagGruppi")]
public partial class ST_AnagGruppi
{
[Key]
public string CodGruppo { get; set; } = "";
public string DescGruppo { get; set; } = "";
public int OrdVisual { get; set; } = 0;
public string CssClass { get; set; } = "";
}
}