21 lines
608 B
C#
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;
|
|
}
|
|
}
|