示例#1
0
 public MessElement(int id, string title, string decription, Time time, MessElementStatus status)
 {
     this.id         = id;
     this.title      = title;
     this.decription = decription;
     this.time       = time;
     this.status     = status;
 }
示例#2
0
 public MessElement(int id, string title, MessElementStatus status)
 {
     this.id     = id;
     this.title  = title;
     this.status = status;
 }