27 lines
578 B
C#
27 lines
578 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace EgwCoreLib.Lux.Data.DbModel
|
|
{
|
|
|
|
[Table("GenClass")]
|
|
public class GenClassModel
|
|
{
|
|
/// <summary>
|
|
/// Cod della classe
|
|
/// </summary>
|
|
[Key]
|
|
public string ClassCod { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Descrizione
|
|
/// </summary>
|
|
public string Description { get; set; } = "";
|
|
|
|
|
|
}
|
|
}
|