Files
lux/Lux.Report.Data/DTO/ReportViewConfDto.cs
2026-04-09 10:55:59 +02:00

15 lines
389 B
C#

namespace Lux.Report.Data.DTO
{
/// <summary>
/// Parametri per la visualizzazione di un Report
/// </summary>
public class ReportViewConfDto
{
public string ReportType { get; set; } = "";
public string ReportFile { get; set; } = "";
public string ImgFullUrl { get; set; } = "";
public string DataFullUrl { get; set; } = "";
}
}