public YouTubeChannel(string id)
 {
     this.id = id;
     YoutubeApi.GetChannelInfo(this);
 }
 public YoutubeVideo(string id)
 {
     this.id = id;
     YoutubeApi.GetVideoInfo(this);
 }