making AssistantAuditResult.cs a record

This commit is contained in:
krut_ni 2026-04-07 14:54:06 +02:00
parent 96c2e8806f
commit 955a82e0c6
No known key found for this signature in database
GPG Key ID: A5C0151B4DDB172C
3 changed files with 1 additions and 11 deletions

View File

@ -3,7 +3,7 @@ namespace AIStudio.Agents.AssistantAudit;
/// <summary>
/// Represents the normalized result returned by the assistant plugin security audit flow.
/// </summary>
public sealed class AssistantAuditResult
public sealed record AssistantAuditResult
{
/// <summary>
/// Gets the serialized audit level returned by the model before callers normalize it to <see cref="AssistantAuditLevel"/>.

View File

@ -1,5 +0,0 @@
@using AIStudio.Settings
@inherits SettingsDialogBase
<MudDialog>
</MudDialog>

View File

@ -1,5 +0,0 @@
using Microsoft.AspNetCore.Components;
namespace AIStudio.Dialogs.Settings;
public partial class SettingsDialogDynamic : SettingsDialogBase;