16 lines
411 B
C#
16 lines
411 B
C#
|
|
namespace ActivityPub;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// https://www.w3.org/TR/activitypub/#endpoints
|
|||
|
|
/// </summary>
|
|||
|
|
public class Endpoints
|
|||
|
|
{
|
|||
|
|
public Uri? ProxyUrl { get; set; }
|
|||
|
|
public Uri? OauthAuthorizationEndpoint { get; set; }
|
|||
|
|
public Uri? OauthTokenEndpoint { get; set; }
|
|||
|
|
public Uri? ProvideClientKey { get; set; }
|
|||
|
|
public Uri? SignClientKey { get; set; }
|
|||
|
|
public Uri? SharedInbox { get; set; }
|
|||
|
|
}
|
|||
|
|
|