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