Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="YouTubeSong"/> class.
 /// </summary>
 /// <param name="iYouTubeSong">The i you tube song.</param>
 public YouTubeSong(IYouTubeSong iYouTubeSong)
 {
     this.Artist         = iYouTubeSong.Artist;
     this.Title          = iYouTubeSong.Title;
     this.SongId         = iYouTubeSong.SongId;
     this.PlayListItemId = iYouTubeSong.PlayListItemId;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="YouTubeSong"/> class.
 /// </summary>
 /// <param name="iYouTubeSong">The i you tube song.</param>
 public YouTubeSong(IYouTubeSong iYouTubeSong)
 {
     this.Artist = iYouTubeSong.Artist;
     this.Title = iYouTubeSong.Title;
     this.SongId = iYouTubeSong.SongId;
     this.PlayListItemId = iYouTubeSong.PlayListItemId;
 }
Пример #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="YouTubeSong"/> class.
 /// </summary>
 /// <param name="iYouTubeSong">The i you tube song.</param>
 public YouTubeSong(IYouTubeSong iYouTubeSong)
 {
     this.Artist         = iYouTubeSong.Artist;
     this.Title          = iYouTubeSong.Title;
     this.SongId         = iYouTubeSong.SongId;
     this.PlayListItemId = iYouTubeSong.PlayListItemId;
     this.Duration       = iYouTubeSong.Duration;
     this.OriginalTitle  = iYouTubeSong.OriginalTitle;
     this.SongGuid       = iYouTubeSong.SongGuid;
 }
Пример #4
0
 public YouTubeSong(IYouTubeSong iYouTubeSong)
 {
     Artist         = iYouTubeSong.Artist;
     Title          = iYouTubeSong.Title;
     SongId         = iYouTubeSong.SongId;
     PlayListItemId = iYouTubeSong.PlayListItemId;
     Duration       = iYouTubeSong.Duration;
     OriginalTitle  = iYouTubeSong.OriginalTitle;
     SongGuid       = iYouTubeSong.SongGuid;
 }