14 lines
206 B
C#
14 lines
206 B
C#
namespace EditorAttributes
|
|
{
|
|
public enum StringInputMode
|
|
{
|
|
Constant,
|
|
Dynamic
|
|
}
|
|
|
|
public interface IDynamicStringAttribute
|
|
{
|
|
public StringInputMode StringInputMode { get; }
|
|
}
|
|
}
|