Formatting

This commit is contained in:
Thorsten Sommer 2026-01-06 15:13:32 +01:00
parent e652eb8b92
commit 9c5de9f987
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -436,9 +436,11 @@ public partial class MainLayout : LayoutComponentBase, IMessageBusReceiver, ILan
private sealed class AudioRecordingResult
{
public string Data { get; set; } = string.Empty;
public string MimeType { get; set; } = string.Empty;
public bool ChangedMimeType { get; set; }
public string Data { get; init; } = string.Empty;
public string MimeType { get; init; } = string.Empty;
public bool ChangedMimeType { get; init; }
}
#region Implementation of IDisposable