12 lines
165 B
C#
12 lines
165 B
C#
using System;
|
|
|
|
namespace KGdev.BI3D.Revit.ExporterV2
|
|
{
|
|
internal struct Edge
|
|
{
|
|
public int LargestIndex;
|
|
|
|
public int SmallestIndex;
|
|
}
|
|
}
|