using System.Diagnostics.CodeAnalysis;
namespace ZeroFramework.DeviceCenter.Application.Models.Devices
{
public class DeviceGroupGetResponseModel
{
///
/// 分组编号
///
public int Id { get; set; }
///
/// 分组名称
///
[AllowNull]
public string Name { get; set; }
///
/// 备注描述
///
public string? Remark { get; set; }
///
/// 创建时间
///
public DateTimeOffset CreationTime { get; set; }
///
/// 父组编号
///
public int? ParentId { get; set; }
///
/// 子组列表
///
public List? Children { get; set; }
}
}