17 lines
323 B
C#
17 lines
323 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace Szmedi.RvKits.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
class ShortcutRepAttribute : Attribute
|
|
{
|
|
public ShortcutRepAttribute(string shortcut)
|
|
{
|
|
Shortcut = shortcut;
|
|
}
|
|
|
|
public string Shortcut { get; }
|
|
}
|
|
}
|