using System; namespace Hg.Core.Domain.Dto { public class InneruserTreeDto { public InneruserTreeDto() { } public object? Value { get; set; } public string? Name { get; set; } public bool Selected { get; set; } public bool Disabled { get; set; } public List? Children { get; set; } } }