// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. using Microsoft.Owin.Security; namespace Owin.Security.Providers.Evernote.Messages { /// /// Yahoo request token /// public class RequestToken { /// /// Gets or sets the Yahoo token /// public string Token { get; set; } public bool CallbackConfirmed { get; set; } /// /// Gets or sets a property bag for common authentication properties /// public AuthenticationProperties Properties { get; set; } } }