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