From d458c9ed23a4f575304d0c16db591c1081d6d118 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Sat, 17 Aug 2024 17:56:07 -0500 Subject: [PATCH] fix: make cache control setter public --- src/AnthropicClient/Models/Content.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AnthropicClient/Models/Content.cs b/src/AnthropicClient/Models/Content.cs index 946b8c5..a8aa0dd 100644 --- a/src/AnthropicClient/Models/Content.cs +++ b/src/AnthropicClient/Models/Content.cs @@ -16,7 +16,7 @@ public abstract class Content /// Gets the cache control to be used for the content. /// [JsonPropertyName("cache_control")] - public CacheControl? CacheControl { get; init; } + public CacheControl? CacheControl { get; set; } [JsonConstructor] internal Content()