Update Program.cs
独孤九剑 authored at 2024-11-21 19:08:54
278.00 B
NewLife.Remoting
using System.ComponentModel;
using NewLife;
using NewLife.Cube;

namespace IoTZero.Areas.IoT;

[DisplayName("设备管理")]
public class IoTArea : AreaBase
{
    public IoTArea() : base(nameof(IoTArea).TrimEnd("Area")) { }

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