示例#1
0
 public ClarificationComment(Post Post, string Comment)
 {
     this.Post = Post;
     this.Comment = Comment;
 }
示例#2
0
 public void RemovePost(Post post)
 {
     Posts.Remove(post);
 }
示例#3
0
 public PostComment(Post Post, string Comment)
 {
     this.Post = Post;
     this.Comment = Comment;
 }
示例#4
0
 public Post CreatePost(Post post)
 {
     Posts.Add(post);
     return post;
 }