//----------------------------------------------------------------------- // // Copyright (c) Andrew Arnott. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOpenAuth.OAuth2.Messages { using System; using System.Collections.Generic; using System.Linq; using System.Text; using DotNetOpenAuth.OAuth2.ChannelElements; /// /// A message sent from the Authorization Server to the client carrying an access token. /// internal interface IAccessTokenIssuingResponse : IAccessTokenCarryingRequest { /// /// Gets or sets the lifetime of the access token. /// /// The lifetime. TimeSpan? Lifetime { get; set; } } }