feat: add type for ephemeral cache control

This commit is contained in:
Stevan Freeborn
2024-08-16 13:58:14 -05:00
parent 90e9b9f75e
commit 35adac9fa0
@@ -0,0 +1,13 @@
namespace AnthropicClient.Models;
/// <summary>
/// Represents the cache control to be used for content.
/// </summary>
public class EphemeralCacheControl : CacheControl
{
/// <summary>
/// Initializes a new instance of the <see cref="EphemeralCacheControl"/> class.
/// </summary>
/// <returns>A new instance of the <see cref="EphemeralCacheControl"/> class.</returns>
public EphemeralCacheControl() : base(CacheControlType.Ephemeral) { }
}