9 lines
216 B
C#
9 lines
216 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Yi.Framework.AiHub.Domain.Shared.Dtos.Anthropic;
|
|
|
|
public sealed class AnthropicCacheControl
|
|
{
|
|
[JsonPropertyName("type")]
|
|
public string Type { get; set; }
|
|
} |