using System.IdentityModel.Tokens; namespace Yavsc { 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; } } }