12 lines
294 B
C#
12 lines
294 B
C#
|
|
namespace ActivityPub;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// https://www.w3.org/ns/activitystreams#OrderedCollection
|
||
|
|
/// </summary>
|
||
|
|
public class OrderedCollection : Collection {
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Default Constructor
|
||
|
|
/// </summary>
|
||
|
|
public OrderedCollection() : base() => this.Type = "OrderedCollection";
|
||
|
|
}
|