Files
anthropic-client/src/AnthropicClient/Models/EphemeralCacheControl.cs
T

13 lines
452 B
C#
Raw Normal View History

2024-08-16 13:58:14 -05:00
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) { }
}