/// <summary> /// Sets the thumbnail of the embed. /// </summary> /// <param name="url">URL to the image</param> /// <returns>This</returns> public Embed SetThumbnail(Uri url) { Thumbnail = new EmbedImage { Url = url }; return(this); }
/// <summary> /// Sets the image of the embed. /// </summary> /// <param name="url">URL to the image</param> /// <returns>This</returns> public Embed SetImage(Uri url) { Image = new EmbedImage { Url = url }; return(this); }