Upgrade Nuget
大石头 authored at 2024-09-08 14:02:44
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>();
}