using ChatApi.Models; namespace ChatApi.Services.ResponseService { public interface IResponseService { EnumClassification Classification { get; } Task GetResponse(HttpContext context, UserData userData, string sessionId, string question, bool needsRestart = false); } }