mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-22 22:31:36 +00:00
8 lines
177 B
C#
8 lines
177 B
C#
|
|
namespace AIStudio.Tools;
|
||
|
|
|
||
|
|
public sealed class AudioRecordingResult
|
||
|
|
{
|
||
|
|
public string MimeType { get; init; } = string.Empty;
|
||
|
|
|
||
|
|
public bool ChangedMimeType { get; init; }
|
||
|
|
}
|