Files
Kg.SeaTime/Service/Application.Domain/Services/Interface/Pub/INoticeService.cs
Putoo 2037d1e577 11
2026-05-18 18:12:21 +08:00

8 lines
261 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);
Task<game_notice> GetNoticeInfo(string id);
}