节点在线、应用在线、配置在线使用令牌查询
大石头 authored at 2021-12-16 19:49:30
520.00 B
Stardust
using System.ComponentModel;
using NewLife;
using NewLife.Cube;
using Stardust.Web.Areas.Deployment;
using XCode;

namespace Stardust.Web.Areas.Registry;

[DisplayName("应用中心")]
[Menu(777, true, LastUpdate = "20240727")]
public class RegistryArea : AreaBase
{
    public RegistryArea() : base(nameof(RegistryArea).TrimSuffix("Area")) { }

    static RegistryArea() => RegisterArea<RegistryArea>();
}

[RegistryArea]
public class RegistryEntityController<T> : WebEntityController<T> where T : Entity<T>, new()
{
}