src/Microsoft.Azure.WebJobs.Extensions.Kafka/Output/Converter/IConverter.cs (11 lines of code) (raw):

// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Collections.Generic; using System.Text; namespace Microsoft.Azure.WebJobs.Extensions.Kafka.Output { public interface IConverter<Request, Response> { Response Convert(Request request); } }