49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Lux.Report.Data.DbModel
|
|
{
|
|
/// <summary>
|
|
/// Classe dei report gestiti
|
|
/// </summary>
|
|
[Table("report_list")]
|
|
public class ReportModel
|
|
{
|
|
/// <summary>
|
|
/// ID del record
|
|
/// </summary>
|
|
[Key]
|
|
public int ReportID { get; set; }
|
|
|
|
/// <summary>
|
|
/// Denominazione
|
|
/// </summary>
|
|
public string Name { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Descrizione
|
|
/// </summary>
|
|
public string Description { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Valore completo Json per recupero dati
|
|
/// </summary>
|
|
public string JsonDSN { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Nome del report Active tra quelli nella folder
|
|
/// </summary>
|
|
public string ActRepName { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// Conf dei parametri per il report
|
|
/// </summary>
|
|
public string ParamConfig { get; set; } = "";
|
|
}
|
|
}
|