namespace NzbDrone.Common.OAuth { /// /// The types of OAuth requests possible in a typical workflow. /// Used for validation purposes and to build static helpers. /// public enum OAuthRequestType { RequestToken, AccessToken, ProtectedResource, ClientAuthentication } }