示例#1
0
 public Message(string type, Post post, string topicName)
 {
     this.type      = type;
     this.post      = post;
     this.topicName = topicName;
 }
示例#2
0
 public Message(string type, Post post)
 {
     this.type = type;
     this.post = post;
 }