16 lines
436 B
C#
16 lines
436 B
C#
namespace ShrlAlgoToolkit.RevitAddins.RvFamily.FamilyLibrary
|
|
{
|
|
public class FamilySymbolType
|
|
{
|
|
public List<Parameter> Parameters { get; set; } = new();
|
|
public string Name { get; set; }
|
|
public string Value { get; set; }
|
|
}
|
|
|
|
public class Parameter
|
|
{
|
|
public string Name { get; set; }
|
|
public string Value { get; set; }
|
|
public string TypeOfParameter { get; set; }
|
|
}
|
|
} |