mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-29 01:19:47 +00:00
7 lines
205 B
C#
7 lines
205 B
C#
|
using System.Text.Json.Serialization;
|
||
|
|
||
|
namespace AIStudio.Tools.Rust;
|
||
|
|
||
|
public readonly record struct GetSecretRequest(
|
||
|
string Destination,
|
||
|
[property:JsonPropertyName("user_name")] string UserName);
|