using AuthorBuddy.Web.Data; namespace AuthorBuddy.Web.Services; public interface IChatService { Task> GetHistoryAsync(int userId); Task AddMessageAsync(ChatEntity message); Task ClearHistoryAsync(int userId); }