- add: menu

This commit is contained in:
2024-12-21 15:15:04 +03:00
parent 42fde38db6
commit d9161f837b
15 changed files with 174 additions and 62 deletions

View 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;
}
}