ComplianceServer/code/Hg.Core.Domain/Dto/InneruserTreeDto.cs

22 lines
371 B
C#

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<InneruserTreeDto>? Children { get; set; }
}
}