AP.NET/Models/Endpoints.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

15 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; }
}