Files
Kg.SeaTime/Service/Application.Domain/Services/Interface/Pub/INoticeService.cs
2026-07-16 12:48:31 +08:00

9 lines
311 B
C#

namespace Application.Domain;
public interface INoticeService
{
Task<List<game_notice>> GetNoticeDataByTake(int take);
Task<List<game_notice>> GetNoticeDataByMap();
Task<List<game_notice>> GetNoticeData(int page, int limit, RefAsync<int> total);
Task<game_notice> GetNoticeInfo(string id);
}