namespace NetinaShop.AdminPanel.PWA.Extensions; public interface IEncryptProvider { Task TextEncrypt(string input); Task TextDecrypt(string input); Task Encrypt(T input); Task Decrypt(string input); }