缩短告警信息里面的时间显示
大石头 authored at 2022-02-23 22:24:23
365.00 B
Stardust
using System;
using System.ComponentModel;
using NewLife;
using NewLife.Cube;

namespace Stardust.Web.Areas.Deployment
{
    [DisplayName("发布中心")]
    public class DeploymentArea : AreaBase
    {
        public DeploymentArea() : base(nameof(DeploymentArea).TrimEnd("Area")) { }

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