45 lines
879 B
C#
45 lines
879 B
C#
using System;
|
|
using PropertyChanged;
|
|
|
|
namespace PocketSharp.Models
|
|
{
|
|
/// <summary>
|
|
/// Readable article
|
|
/// </summary>
|
|
[ImplementPropertyChanged]
|
|
public class PocketArticle
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the pocket item ID.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The pocket item ID.
|
|
/// </value>
|
|
public int PocketItemID { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the content.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The content.
|
|
/// </value>
|
|
public string Content { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the title.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The title.
|
|
/// </value>
|
|
public string Title { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the next page URL.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The next page URL.
|
|
/// </value>
|
|
public Uri NextPage { get; set; }
|
|
}
|
|
}
|