mirror of
https://gitea.tendokyu.moe/Kayori/Medusa.net.git
synced 2026-09-26 08:18:01 +03:00
9 lines
313 B
C#
9 lines
313 B
C#
namespace Server.Services;
|
|
|
|
public interface IEaCoinSessionService
|
|
{
|
|
public void AddSession(long userId, string sessionId, string refId);
|
|
public EaCoinSession AddSession(long userId, string cardId);
|
|
public EaCoinSession? GetSession(string sessionId);
|
|
public void RemoveSession(string sessionId);
|
|
} |