26 lines
No EOL
618 B
C#
26 lines
No EOL
618 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace isnd.Data.Catalog
|
|
{
|
|
public class PageRef : IObject
|
|
{
|
|
/// <summary>
|
|
/// Page Url
|
|
/// </summary>
|
|
/// <value></value>
|
|
[JsonProperty("@id")]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Page entry count
|
|
/// </summary>
|
|
/// <value></value>
|
|
[JsonProperty("count")]
|
|
public int Count { get; set; }
|
|
public string CommitId { get; set; }
|
|
public DateTime CommitTimeStamp { get; set; }
|
|
}
|
|
|
|
|
|
} |