9 lines
252 B
C#
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);
|
|
} |