fix: make cache control setter public

This commit is contained in:
Stevan Freeborn
2024-08-17 17:56:07 -05:00
parent 0253794235
commit d458c9ed23
+1 -1
View File
@@ -16,7 +16,7 @@ public abstract class Content
/// Gets the cache control to be used for the content.
/// </summary>
[JsonPropertyName("cache_control")]
public CacheControl? CacheControl { get; init; }
public CacheControl? CacheControl { get; set; }
[JsonConstructor]
internal Content()