Gordon Pedersen
7c84fbc4c5
There's a lot of rubbish in here, but I don't want to lose anything, so I'm going to commit it all before getting rid of some of the trash.
17 lines
No EOL
442 B
C#
17 lines
No EOL
442 B
C#
namespace ActivityPub;
|
|
|
|
/// <summary>
|
|
/// https://www.w3.org/ns/activitystreams#OrderedCollectionPage
|
|
/// </summary>
|
|
public class OrderedCollectionPage : CollectionPage {
|
|
|
|
/// <summary>
|
|
/// Default Constructor
|
|
/// </summary>
|
|
public OrderedCollectionPage() : base() => this.Type = "OrderedCollectionPage";
|
|
|
|
/// <summary>
|
|
/// https://www.w3.org/ns/activitystreams#startIndex
|
|
/// </summary>
|
|
public uint StartIndex { get; set; }
|
|
} |