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

9 lines
322 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);
}