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