Files
Kg.SeaTime/Service/Application.Domain/Services/Interface/Business/IExchangeService.cs
2026-07-08 19:13:55 +08:00

10 lines
356 B
C#

namespace Application.Domain;
public interface IExchangeService
{
Task<List<game_exchange>> GetExchangeData(int npcId);
Task<game_exchange> GetExchangeInfo(int exId);
Task<int> GetExchangeCount(string userId, int exId);
Task<bool> AddUserExchangeLog(string userId, int exId, int count, long endTime);
Task HandleExchangeLogData();
}