Files
Kg.SeaTime/Service/Application.Domain/Services/Interface/Map/IGameStoreService.cs
2026-05-27 18:26:50 +08:00

9 lines
252 B
C#

namespace Application.Domain;
public interface IGameStoreService
{
Task<List<game_city_npc_store>> GetStoreData(int npc, int area, int page, int limit,
RefAsync<int> total);
Task<game_city_npc_store> GetStoreInfo(string storeId);
}