Files
ShrlAlgoToolkit/ShrlAlgoToolkit.RevitAddins/RvFamily/FamilyLibrary/Models.cs

16 lines
424 B
C#
Raw Normal View History

namespace ShrlAlgo.RvKits.RvFamily.FamilyLibrary
2024-09-22 11:05:41 +08:00
{
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; }
}
}