Files
Kg.SeaTime/Service/Application.Domain/Services/Interface/Pub/IGameMallService.cs
2026-05-28 19:06:40 +08:00

8 lines
288 B
C#

namespace Application.Domain;
public interface IGameMallService
{
Task<List<game_mall>> GetMallData(int area, string type, int page, int limit, RefAsync<int> total);
Task<game_mall> GetMallInfo(string mallId);
Task<bool> AddLog(game_mall mall, string userId, int count);
}