Jackett/src/Jackett.Common/Services/Interfaces/IProtectionService.cs

9 lines
187 B
C#

namespace Jackett.Common.Services.Interfaces
{
public interface IProtectionService
{
string Protect(string plainText);
string UnProtect(string plainText);
}
}