12 lines
		
	
	
		
			412 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			412 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Core.Blueprint.Domain.Entities;
 | |
| 
 | |
| namespace Core.Blueprint.DAL.Service.Contracts
 | |
| {
 | |
|     public interface ISecretService
 | |
|     {
 | |
|         Task<Secret> GetSecret(string secretName, CancellationToken cancellationToken);
 | |
|         Task SetSecret(string secretName, string secretValue, CancellationToken cancellationToken);
 | |
|         Task RemoveSecret(string secretName, CancellationToken cancellationToken);
 | |
|     }
 | |
| }
 | 
