diff --git a/src/AnthropicClient/Models/EphemeralCacheControl.cs b/src/AnthropicClient/Models/EphemeralCacheControl.cs
new file mode 100644
index 0000000..05185ce
--- /dev/null
+++ b/src/AnthropicClient/Models/EphemeralCacheControl.cs
@@ -0,0 +1,13 @@
+namespace AnthropicClient.Models;
+
+///
+/// Represents the cache control to be used for content.
+///
+public class EphemeralCacheControl : CacheControl
+{
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// A new instance of the class.
+ public EphemeralCacheControl() : base(CacheControlType.Ephemeral) { }
+}
\ No newline at end of file