using System; using System.Collections.Generic; using KGdev.BI3D.Revit.Common.Models; namespace KGdev.BI3D.Revit.ExporterV2 { internal class GeometryRetrieverResult { public List Positions { get; } = new List(); public List Indices { get; } = new List(); public List Colors { get; } = new List(); public List ColorIndices { get; } = new List(); public List Ids { get; } = new List { "" }; public Dictionary ExportedElementIdPathById { get; } = new Dictionary(); public List IdIndices { get; } = new List(); } }