| 1234567891011121314151617181920212223 |
- using SuperAdmin.Models.Object;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace SuperAdmin.Models.View
- {
- public class CommonModel
- {
- public class DistributedByLevel
- {
- public List<MapData> mapData { get; set; }
- public int level { get; set; }
- }
- public class MapData
- {
- public RowStructure oldData { get; set; }
- public RowStructure newData { get; set; }
- }
- }
- }
|