FactoryRegionTreeDto.cs 412 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DllEapEntity.Dtos
  5. {
  6. public class FactoryRegionTreeDto : FactoryRegion
  7. {
  8. public string Key { get; set; }
  9. public string Name { get; set; }
  10. public int Level { get; set; }
  11. public bool Expand { get; set; } = false;
  12. public IEnumerable<FactoryRegionTreeDto> Children { get; set; }
  13. }
  14. }