public static YouTubeInfo AttachToYtInfo(Attachment a)
 {
     YouTubeInfo info = new YouTubeInfo();
     info.ThumbNailUrl = a.VideoThumbURL;
     info.EmbedUrl = a.VideoEmbedURL;
     info.LinkUrl = a.VideoLinkURL;
     return info;
 }
 public YouTubeResultEventArgs(YouTubeInfo info)
 {
     this.Info = info;
 }