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.
20 lines
No EOL
579 B
C#
20 lines
No EOL
579 B
C#
namespace ActivityPub;
|
|
|
|
/// <summary>
|
|
/// https://www.w3.org/ns/activitystreams#CollectionPage
|
|
/// </summary>
|
|
public class CollectionPage : Collection {
|
|
|
|
/// <summary>
|
|
/// Default Constructor
|
|
/// </summary>
|
|
public CollectionPage() : base() => this.Type = "CollectionPage";
|
|
// https://www.w3.org/ns/activitystreams#partOf
|
|
public CollectionOrLink? PartOf { get; set; }
|
|
|
|
// https://www.w3.org/ns/activitystreams#next
|
|
public CollectionPageOrLink? Next { get; set; }
|
|
|
|
// https://www.w3.org/ns/activitystreams#prev
|
|
public CollectionPageOrLink? Prev { get; set; }
|
|
} |