CommonModel.cs 527 B

1234567891011121314151617181920212223
  1. using SuperAdmin.Models.Object;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace SuperAdmin.Models.View
  7. {
  8. public class CommonModel
  9. {
  10. public class DistributedByLevel
  11. {
  12. public List<MapData> mapData { get; set; }
  13. public int level { get; set; }
  14. }
  15. public class MapData
  16. {
  17. public RowStructure oldData { get; set; }
  18. public RowStructure newData { get; set; }
  19. }
  20. }
  21. }