Files
SzmediTools/Szmedi.RvKits/Attributes/ShortcutRepAttribute.cs

17 lines
323 B
C#
Raw Permalink Normal View History

2025-09-16 16:06:41 +08:00
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; }
}
}