Files
Samuele Locatelli 1648ad0349 Altri update pagine
2025-06-21 11:53:07 +02:00

31 lines
803 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("ElencoReport")]
public partial class ElencoReportModel
{
[Key]
public int IdxRep { get; set; } = 0;
public string Area { get; set; } = "";
[Column("nome")]
public string? Nome { get; set; } = "";
[Column("descrizione")]
public string? Descrizione { get; set; } = "";
[Column("cssClass")]
public string? CssClass { get; set; } = "";
public string ReportUrl { get; set; } = "";
}
}