Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "listType" : "department",
  3.     "listData"  :
  4.     [
  5.         {
  6.             "Id" : 1,
  7.             "ParentId" : null,
  8.             "Name" : "Clothing",
  9.             "Children" : [
  10.                 {
  11.                     "Id" : 2,
  12.                     "ParentId" : 1,
  13.                     "Name" : "Men's Clothing",
  14.                     "Children" : []
  15.                 },
  16.                 {
  17.                     "Id" : 3,
  18.                     "ParentId" : 1,
  19.                     "Name" : "Kid's Clothing",
  20.                     "Children" : []
  21.                 },
  22.                 {
  23.                     "Id" : 4,
  24.                     "ParentId": 1,
  25.                     "Name" : "Women's Clothing",
  26.                     "Children" : []
  27.                 }
  28.             ]
  29.         },
  30.         {
  31.             "Id" : 5,
  32.             "ParentId" : null,
  33.             "Name" : "Shoes",
  34.             "Children" : [
  35.                 {
  36.                     "Id" : 6,
  37.                     "ParentId" : 5,
  38.                     "Name" : "Men's Shoes",
  39.                     "Children" : []
  40.                 },
  41.                 {
  42.                     "Id" : 7,
  43.                     "ParentId" : 5,
  44.                     "Name" : "Kid's Shoes",
  45.                     "Children" : []
  46.                 },
  47.                 {
  48.                     "Id" : 8,
  49.                     "ParentId": 5,
  50.                     "Name" : "Women's Shoes",
  51.                     "Children" : []
  52.                 }
  53.             ]
  54.         }
  55.     ]
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement