fix: remove converter

This commit is contained in:
Stevan Freeborn
2024-08-16 08:19:47 -05:00
parent ed97ea95dc
commit 66008717e1
@@ -1,19 +0,0 @@
using System.Text.Json;
using System.Text.Json.Serialization;
using AnthropicClient.Models;
namespace AnthropicClient.Json;
class MessageRequestConverter : JsonConverter<MessageRequest>
{
public override MessageRequest Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
{
return JsonSerializer.Deserialize<MessageRequest>(ref reader, options)!;
}
public override void Write(Utf8JsonWriter writer, MessageRequest value, JsonSerializerOptions options)
{
throw new NotImplementedException();
}
}