using System.Diagnostics.CodeAnalysis; namespace ZeroFramework.DeviceCenter.Application.Models.Devices { public class DeviceGroupUpdateRequestModel { /// /// 分组编号 /// public int Id { get; set; } /// /// 分组名称 /// [AllowNull] public string Name { get; set; } /// /// 备注描述 /// public string? Remark { get; set; } /// /// 父组编号 /// public int? ParentId { get; set; } } }