17 lines
387 B
C#
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;
|
|
}
|
|
}
|
|
} |