mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 01:12:24 +00:00
11 lines
236 B
C#
11 lines
236 B
C#
|
namespace FSO.Server.Database.DA.AuthTickets
|
|||
|
{
|
|||
|
public interface IAuthTickets
|
|||
|
{
|
|||
|
void Create(AuthTicket ticket);
|
|||
|
AuthTicket Get(string id);
|
|||
|
void Delete(string id);
|
|||
|
void Purge(uint time);
|
|||
|
}
|
|||
|
}
|