31 lines
803 B
C#
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; } = "";
|
|
}
|
|
}
|