Files
gpw_next/GPW.CORE.Data/DbModels/AnagGiustModel.cs
T
2023-01-03 12:09:42 +01:00

21 lines
608 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace GPW.CORE.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("AnagGiust")]
public partial class AnagGiustModel
{
[Key]
public string codGiust { get; set; } = null!;
public string descrizione { get; set; } = "";
public bool userSelectable { get; set; } = false;
public bool showReq { get; set; } = false;
}
}