public string GetImgurIdNum()
        {
            if (GetContentType() != ContentType.ImgurGallery)
            {
                return("");
            }

            else if (UrlContent.Contains("https"))
            {
                return(UrlContent.Replace("https://imgur.com/a/", ""));
            }

            return(UrlContent.Replace("http://imgur.com/a/", ""));
        }