22 lines
552 B
C#
22 lines
552 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_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; } = "";
|
|
|
|
}
|
|
} |