14 lines
355 B
C#
14 lines
355 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Taloyhtio.GeneralSSO.Server.CodeFiles.Entities;
|
|
|
|
namespace Taloyhtio.GeneralSSO.Server.CodeFiles.Repositories
|
|
{
|
|
public interface INonceRepository : IRepository<Nonce, int>
|
|
{
|
|
bool Exists(string context, string code, DateTime timestamp);
|
|
}
|
|
}
|