Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public class Menu
  2. {
  3. public int id { get; set; }
  4. public string name { get; set; }
  5. public int? parent { get; set; }
  6. public int? type { get; set; }
  7. public string icon { get; set; }
  8. public bool child { get; set; }
  9. public string action { get; set; }
  10. public string controller { get; set; }
  11. public string area { get; set; }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement