api/NetinaCMS.Common/Models/Report/ReportResult.cs

34 lines
706 B
C#
Raw Permalink Normal View History

2024-03-24 12:35:42 +03:30
namespace NetinaCMS.Common.Models.Report
2024-03-09 19:53:01 +03:30
{
public class ReportResult
{
private List<ReportRow> _rows;
public List<ReportRow> Rows
{
get
{
if (_rows == null)
_rows = new List<ReportRow>();
return _rows;
}
set => _rows = value;
}
}
public class ReportRow
{
private List<string> _cells;
public List<string> Cells
{
get
{
if (_cells == null)
_cells = new List<string>();
return _cells;
}
set => _cells = value;
}
}
}