添加项目文件。
This commit is contained in:
16
Szmedi.RvKits/Attributes/ShortcutRepAttribute.cs
Normal file
16
Szmedi.RvKits/Attributes/ShortcutRepAttribute.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user