Files
MsAddIns/MSDevTool/Models/ECPropValue.cs

12 lines
268 B
C#
Raw Normal View History

2026-02-28 21:01:57 +08:00
//using Bentley.DgnPlatform;
using Bentley.ECObjects.Instance;
namespace MSDevTool.Models
{
public class ECPropValue : PropValueBase
{
public IECPropertyValue ECPropertyValue { get; set; }
public string ECInstanceName { get; set; }
}
}