using ChatServerSpace.Models; namespace ChatServerSpace.Services { public interface IChatService { Task ProcessMessageAsync(ChatRequest request); } }