12 lines
213 B
C#
12 lines
213 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Prise.IntegrationTestsContract
|
|
{
|
|
public interface ITokenService
|
|
{
|
|
Task<string> GenerateToken();
|
|
|
|
Task<bool> ValidateToken(string token);
|
|
}
|
|
}
|