Files
MsAddIns/MSDevTool/Models/ECPropValue.cs
2026-02-28 21:01:57 +08:00

12 lines
268 B
C#

//using Bentley.DgnPlatform;
using Bentley.ECObjects.Instance;
namespace MSDevTool.Models
{
public class ECPropValue : PropValueBase
{
public IECPropertyValue ECPropertyValue { get; set; }
public string ECInstanceName { get; set; }
}
}