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