mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-20 11:01:37 +00:00
18 lines
425 B
C#
18 lines
425 B
C#
|
|
using Microsoft.AspNetCore.Components;
|
||
|
|
|
||
|
|
namespace AIStudio.Components;
|
||
|
|
|
||
|
|
public partial class EncryptionSecretInfo : ComponentBase
|
||
|
|
{
|
||
|
|
[Parameter]
|
||
|
|
public bool IsConfigured { get; set; }
|
||
|
|
|
||
|
|
[Parameter]
|
||
|
|
public string ConfiguredText { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
[Parameter]
|
||
|
|
public string NotConfiguredText { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
[Parameter]
|
||
|
|
public string Class { get; set; } = "mt-2 mb-2";
|
||
|
|
}
|