11 lines
242 B
C#
11 lines
242 B
C#
|
|
using AuthorBuddy.Web.Data;
|
||
|
|
|
||
|
|
namespace AuthorBuddy.Web.Services;
|
||
|
|
|
||
|
|
public interface IChatService
|
||
|
|
{
|
||
|
|
Task<List<ChatEntity>> GetHistoryAsync(int userId);
|
||
|
|
Task AddMessageAsync(ChatEntity message);
|
||
|
|
Task ClearHistoryAsync(int userId);
|
||
|
|
}
|