diff --git a/ReadSharp/Models/ArticleImage.cs b/ReadSharp/Models/ArticleImage.cs index 1389958..985e6f5 100644 --- a/ReadSharp/Models/ArticleImage.cs +++ b/ReadSharp/Models/ArticleImage.cs @@ -38,5 +38,16 @@ namespace ReadSharp /// The alternative text. /// public string AlternativeText { get; set; } + + /// + /// Gets a value indicating whether [is valid URI]. + /// + /// + /// true if [is valid URI]; otherwise, false. + /// + public bool IsValidUri + { + get { return Uri != null && Uri.IsWellFormedUriString(Uri.ToString(), UriKind.Absolute); } + } } }