- add: menu
This commit is contained in:
13
Nebula.Launcher/ViewHelper/ViewRegisterAttribute.cs
Normal file
13
Nebula.Launcher/ViewHelper/ViewRegisterAttribute.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace Nebula.Launcher.ViewHelper;
|
||||
|
||||
public class ViewRegisterAttribute : Attribute
|
||||
{
|
||||
public Type Type { get; }
|
||||
|
||||
public ViewRegisterAttribute(Type type)
|
||||
{
|
||||
Type = type;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user