8 lines
288 B
C#
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);
|
|
} |