AP.NET/Models/CollectionPage.cs

20 lines
579 B
C#
Raw Normal View History

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; }
}