增加配置中心基本页面
大石头 authored at 2021-01-11 22:36:44
347.00 B
Stardust
using System;
using System.ComponentModel;
using NewLife;
using NewLife.Cube;

namespace Stardust.Web.Areas.Configs
{
    [DisplayName("配置中心")]
    public class ConfigsArea : AreaBase
    {
        public ConfigsArea() : base(nameof(ConfigsArea).TrimEnd("Area")) { }

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