SparkControl_API/DemoAttribute.cs
2025-03-27 16:01:28 +08:00

17 lines
387 B
C#

using System;
namespace Tecan.At.AutomationInterface.SampleApp
{
[AttributeUsage(AttributeTargets.Method)]
public class DemoAttribute : Attribute
{
public string Name { get; private set; }
public char Key { get; private set; }
public DemoAttribute(string name, char key)
{
Name = name;
Key = key;
}
}
}