mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
9 lines
346 B
C#
9 lines
346 B
C#
using Govor.Core.Models;
|
|
|
|
namespace Govor.Application.Interfaces;
|
|
|
|
public interface IMessagesLoader
|
|
{
|
|
Task<List<Message>> LoadLastMessagesInUserChat(Guid userId,Guid currentId, Guid? startMessageId, int pageSize = 20);
|
|
Task<List<Message>> LoadLastMessagesInChatGroup(Guid chatId,Guid currentId, Guid? startMessageId, int pageSize = 20);
|
|
} |