Esempio n. 1
0
 public PassiveMsgVideo(string Mediaid, string title, string descript, PassiveMsgModel pm)
 {
     this.MediaID     = Mediaid;
     this.title       = title;
     this.Description = descript;
     this.pm          = pm;
 }
Esempio n. 2
0
 public PassiveMsgImage(string Mediaid, PassiveMsgModel pm)
 {
     this.MediaID = Mediaid;
     this.pm      = pm;
 }
Esempio n. 3
0
 public PassiveMsgText(string content, PassiveMsgModel pm)
 {
     this.Content = content;
     this.pm      = pm;
 }
Esempio n. 4
0
 public PassiveMsgImTx(PassiveMsgModel pm)
 {
     Litx    = new List <ImTx>();
     this.pm = pm;
 }