mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-06-27 15:56:28 +00:00
8 lines
259 B
C#
8 lines
259 B
C#
namespace AIStudio.Provider;
|
|
|
|
public sealed record TranscriptionResult(bool Success, string Text)
|
|
{
|
|
public static TranscriptionResult FromText(string text) => new(true, text);
|
|
|
|
public static TranscriptionResult Failure() => new(false, string.Empty);
|
|
} |