- using SuperAdmin.Models.Object;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace SuperAdmin.Models.View
- {
- public class TreeViewModel
- {
- public RowStructure parent { get; set; }
- public RowStructures rows { get; set; }
- }
- }
|