AP.NET/Constants.cs
Gordon Pedersen 7c84fbc4c5 Initial commit way too late
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.
2024-04-05 15:26:57 +11:00

14 lines
No EOL
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");
}