7 lines
171 B
C#
7 lines
171 B
C#
namespace CloudPrint.Client.Services.Abstractions;
|
|
|
|
public interface ISecretProtector
|
|
{
|
|
string Protect(string plainText);
|
|
string Unprotect(string protectedText);
|
|
} |