예제 #1
0
 public WebhookEmbed WithThumbnail(string value)
 {
     this.thumbnail = new WebhookImage()
     {
         url = value
     };
     return(this);
 }
예제 #2
0
 public WebhookEmbed WithImage(string value)
 {
     this.image = new WebhookImage()
     {
         url = value
     };
     return(this);
 }