15 lines
357 B
C#
15 lines
357 B
C#
using System;
|
|
|
|
namespace XCharts.Editor
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
|
|
public sealed class ComponentEditorAttribute : Attribute
|
|
{
|
|
public readonly Type componentType;
|
|
|
|
public ComponentEditorAttribute(Type componentType)
|
|
{
|
|
this.componentType = componentType;
|
|
}
|
|
}
|
|
} |