12 lines
207 B
C#
12 lines
207 B
C#
using System;
|
|
|
|
namespace CadParamPluging.Common
|
|
{
|
|
[Serializable]
|
|
public class NotePlaceholderBinding
|
|
{
|
|
public int Index { get; set; }
|
|
public string ParamKey { get; set; }
|
|
}
|
|
}
|