2024-04-05 04:26:57 +00:00
|
|
|
|
namespace ActivityPub;
|
|
|
|
|
|
2024-05-02 04:54:14 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The context urls for JSON-LD
|
|
|
|
|
/// </summary>
|
2024-04-05 04:26:57 +00:00
|
|
|
|
public class Context {
|
2024-05-02 04:54:14 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The ActivityStreams context
|
|
|
|
|
/// </summary>
|
2024-04-05 04:26:57 +00:00
|
|
|
|
public static readonly Uri ActivityStreams = new("https://www.w3.org/ns/activitystreams");
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-02 04:54:14 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Known collection urls
|
|
|
|
|
/// </summary>
|
2024-04-05 04:26:57 +00:00
|
|
|
|
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");
|
|
|
|
|
}
|