using System; using System.IdentityModel.Tokens; namespace Yavsc { [Obsolete("Use OAuth2AppSettings instead")] public class TokenAuthOptions { /// /// Public's identification /// /// public string Audience { get; set; } /// /// Identity authority /// /// public string Issuer { get; set; } /// /// Signin key and signature algotythm /// /// public SigningCredentials SigningCredentials { get; set; } public int ExpiresIn { get; set; } } }