16 lines
419 B
C#
16 lines
419 B
C#
|
|
namespace Sai.RvKits.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; }
|
|||
|
|
}
|
|||
|
|
}
|