Пример #1
0
 public bool Equals(YoutubeResult other)
 {
     return
         (Id.Equals(other.Id) &&
          Type == other.Type &&
          Songs.SequenceEqual(other.Songs) &&
          SongsLoaded == other.SongsLoaded &&
          PlaylistInfo.Equals(other.PlaylistInfo)
         );
 }