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) { }
}