Rhino solids to Revit API Solids

Hello Rhino inside developers,

is there a way to convert a brep into a Revit API Solid? I am using these solids to delete some geometries within them.

box_filter = DB.ElementIntersectsSolidFilter(SOLID, False)
collector = DB.FilteredElementCollector(doc).WherePasses(box_filter).ToElements()
del = [doc.Delete(ele.Id) for ele in collector]

I just dont know how to convert my rhino inside brep solid into a Revit SOLID.

Thanks in advance!

There are convert methods in RhinoInside

image