12 lines
268 B
C#
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; }
|
|
}
|
|
}
|