Files
Kg.SeaTime/Service/Application.Domain/Services/Interface/Pub/INoticeService.cs
Putoo a219fbec32 111
2026-04-27 17:53:43 +08:00

7 lines
213 B
C#

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