Advertisement
Guest User

Untitled

a guest
Nov 29th, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. class Content {
  2. private ContentType type;
  3. private String name;
  4. private String title;
  5. private String description;
  6. // createdDate and bla bla bla
  7. private bool enabled;
  8.  
  9. }
  10.  
  11. class ContentType {
  12. private String name;
  13. private String title;
  14. private String description;
  15. private List<ContentType> subTypes;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement