Files
csharp/src/KubernetesClient.Aot/KubeConfigModels/ExecCredentialResponseContext.cs
Eric Kerst 74538d58f2 fix ExecCredentialResponse deserializion in aot (#1643)
* Add ExecCredentialResponseContext for JSON serialization support

* Added ExecStatus JsonPropertyNames
2025-08-05 22:53:24 -07:00

8 lines
183 B
C#

namespace k8s.KubeConfigModels
{
[JsonSerializable(typeof(ExecCredentialResponse))]
internal partial class ExecCredentialResponseContext : JsonSerializerContext
{
}
}