2025-02-10 20:53:40 +08:00
|
|
|
|
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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|