减少TraceItem数据量较大时的性能浪费
智能大石头 authored at 2024-10-22 08:41:14
368.00 B
Stardust
using System.ComponentModel;
using NewLife;
using NewLife.Cube;

namespace Stardust.Web.Areas.Deployment;

[DisplayName("发布中心")]
[Menu(555, true, LastUpdate = "20240407")]
public class DeploymentArea : AreaBase
{
    public DeploymentArea() : base(nameof(DeploymentArea).TrimEnd("Area")) { }

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