32 lines
		
	
	
		
			575 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			575 B
		
	
	
	
		
			C#
		
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace ZhaoXi._001.NET5Demo.Practice.WebApi.Utility.Jwt
 | |
| {
 | |
|     public class JWTTokenOptions
 | |
|     {
 | |
|         public string Audience
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
|         public string SecurityKey
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
|         //public SigningCredentials Credentials
 | |
|         //{
 | |
|         //    get;
 | |
|         //    set;
 | |
|         //}
 | |
|         public string Issuer
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
|     }
 | |
| }
 |