| using System; | 
| using System.Collections.Generic; | 
| using System.Linq; | 
| using System.Web; | 
|   | 
| namespace WebAPI.Models | 
| { | 
|     public class Menu | 
|     { | 
|         //public int HitemID { get; set; } | 
|         public string HitemID { get; set; } | 
|         //public int? HPartentID { get; set; } | 
|         public string HPartentID { get; set; } | 
|         public string HNumber { get; set; } | 
|         public string HName { get; set; } | 
|         public int HLevel { get; set; } | 
|         public string Hurl { get; set; } | 
|         public List<Menu> childMenus { get; set; } | 
|     } | 
| } |