namespace ActivityPub; /// /// https://www.w3.org/ns/activitystreams#OrderedCollectionPage /// public class OrderedCollectionPage : CollectionPage { /// /// Default Constructor /// public OrderedCollectionPage() : base() => this.Type = "OrderedCollectionPage"; /// /// https://www.w3.org/ns/activitystreams#startIndex /// public uint StartIndex { get; set; } }