17 lines
479 B
C#
17 lines
479 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace KGdev.BI3D.Revit.DataExporter.JsonTable
|
|||
|
|
{
|
|||
|
|
internal class JsonTableDataExporterResult
|
|||
|
|
{
|
|||
|
|
public JsonTableDataExporterDocumentInfo DocumentInfo { get; set; }
|
|||
|
|
|
|||
|
|
public List<Dictionary<string, object>> Objects { get; } =
|
|||
|
|
new List<Dictionary<string, object>>();
|
|||
|
|
|
|||
|
|
public List<Dictionary<string, object>> Types { get; } =
|
|||
|
|
new List<Dictionary<string, object>>();
|
|||
|
|
}
|
|||
|
|
}
|