using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Yi.Framework.Rbac.Domain.Shared.Options { public class JwtOptions { public string Issuer { get; set; } public string Audience { get; set; } public string SecurityKey { get; set; } public long ExpiresMinuteTime { get; set; } } }