16 lines
324 B
C#
16 lines
324 B
C#
using System;
|
|
|
|
namespace PashaBibko.Pacore.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class InspectorCallableAttribute : Attribute
|
|
{
|
|
public string ButtonName { get; }
|
|
|
|
public InspectorCallableAttribute(string name)
|
|
{
|
|
ButtonName = name;
|
|
}
|
|
}
|
|
}
|