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

namespace Stardust.Web.Areas.Platform;

[DisplayName("平台管理")]
[Menu(999, true, LastUpdate = "20240407")]
public class PlatformArea : AreaBase
{
    public PlatformArea() : base(nameof(PlatformArea).TrimSuffix("Area")) { }

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