namespace Speckle.Converters.RevitShared.Helpers; public class RevitToHostCacheSingleton { /// /// POC: Not sure is there a way to create it on "RevitHostObjectBuilder" with a scope instead singleton. For now we fill this dictionary and clear it on "RevitHostObjectBuilder". /// Map extracted by revit material baker to be able to use it in converter. /// This is needed because we cannot set materials for meshes in connector. /// They needed to be set while creating "TessellatedFace". /// public Dictionary MaterialsByObjectId { get; } = new(); }