add(conversation):完善私聊好友会话服务

This commit is contained in:
2026-01-03 22:13:28 +08:00
35 changed files with 456 additions and 54 deletions
@@ -0,0 +1,9 @@
using IM_API.Domain.Interfaces;
namespace IM_API.Application.Interfaces
{
public interface IEventHandler<in TEvent> where TEvent : IEvent
{
Task Handle(TEvent @event);
}
}