public static bool operator !=(SpotifyObjectBase obj1, SpotifyObjectBase obj2)
        {
            if (obj1.ID == 0)
            {
                SpotifyAccessLayer.UpdateObjectIDForSpotifyObject(obj1);
            }

            if (obj2.ID == 0)
            {
                SpotifyAccessLayer.UpdateObjectIDForSpotifyObject(obj2);
            }

            return(obj1.ID != obj2.ID);
        }
 protected SpotifyObjectBase(string sSpotifyID, string Name)
 {
     this.Name      = Name;
     this.SpotifyID = sSpotifyID;
     SpotifyAccessLayer.UpdateObjectIDForSpotifyObject(this);
 }