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