14 lines
		
	
	
		
			280 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			280 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Core.Inventory.External.Helpers
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Interface for token provider.
 | |
|     /// </summary>
 | |
|     public interface ITokenProvider
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Get token from headers.
 | |
|         /// </summary>
 | |
|         string GetToken();
 | |
|     }
 | |
| }
 |