PlayerManagement/Application/Interfaces/IEncryptionService.cs
Tomasi - Developing bafe2cde5a v 0.7.0
2025-02-06 10:44:55 +01:00

8 lines
175 B
C#

namespace Application.Interfaces;
public interface IEncryptionService
{
Task<string> EncryptAsync(string plainText);
Task<string> Decrypt(string encryptedText);
}