Skip to content

Instantly share code, notes, and snippets.

@zelid
Created September 20, 2013 12:48
Show Gist options
  • Save zelid/6636968 to your computer and use it in GitHub Desktop.
Save zelid/6636968 to your computer and use it in GitHub Desktop.
public class Question
{
public int Id { get; set; }
public string Name { get; set; }
public List<Answer> Answers { get; set; }
public List<Comment> Comments { get; set; }
}
public class Answer
{
public int Id { get; set; }
public string Name { get; set; }
public List<Comment> Comments { get; set; }
}
public class Comment
{
public int Id { get; set; }
public string Name { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment