using PropertyChanged;
using System;
namespace PocketSharp.Models
{
///
/// Article image
///
[ImplementPropertyChanged]
public class PocketArticleImage
{
///
/// Gets or sets the URI.
///
///
/// The URI.
///
public Uri Uri { get; set; }
///
/// Gets or sets the title.
///
///
/// The title.
///
public string Title { get; set; }
///
/// Gets or sets the alternative text.
///
///
/// The alternative text.
///
public string AlternativeText { get; set; }
}
}