14 lines
482 B
C#
14 lines
482 B
C#
|
namespace ActivityPub;
|
|||
|
|
|||
|
public class Context {
|
|||
|
public static readonly Uri ActivityStreams = new("https://www.w3.org/ns/activitystreams");
|
|||
|
}
|
|||
|
|
|||
|
public class Collections {
|
|||
|
/// <summary>
|
|||
|
/// The public address for delivery.
|
|||
|
/// See https://www.w3.org/TR/activitypub/#x5-6-public-addressing
|
|||
|
/// Also note, may be represented as "Public" or "as:Public"
|
|||
|
/// </summary>
|
|||
|
public static readonly Uri Public = new("https://www.w3.org/ns/activitystreams#Public");
|
|||
|
}
|