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

16 lines
436 B
C#
Raw Normal View History

2025-04-24 20:56:44 +08:00
namespace ShrlAlgoToolkit.RevitAddins.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; }
}
}