2023-02-18 08:52:17 +01:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
2023-02-19 00:43:43 +01:00
|
|
|
|
namespace PrivaPub.Models.ActivityPub
|
2023-02-18 08:52:17 +01:00
|
|
|
|
{
|
|
|
|
|
[JsonSerializable(typeof(ActivityPubOrderedCollectionPage))]
|
|
|
|
|
public class ActivityPubOrderedCollectionPage : ActivityPubCollection
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("type")]
|
|
|
|
|
public new ObjectType Type => ObjectType.OrderedCollectionPage;
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("partOf")]
|
|
|
|
|
public string BaseCollectionLink { get; set; }
|
|
|
|
|
[JsonPropertyName("next")]
|
|
|
|
|
public string NextCollectionLink { get; set; }
|
|
|
|
|
[JsonPropertyName("prev")]
|
|
|
|
|
public string PreviousCollectionLink { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("startIndex")]
|
|
|
|
|
public uint? StartIndex { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("orderedItems")]
|
|
|
|
|
public List<ActivityPubLink> OrderedItems { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("totalItems")]
|
|
|
|
|
public new int TotalItems => OrderedItems?.Count ?? default;
|
|
|
|
|
}
|
|
|
|
|
}
|