AI-Studio/app/MindWork AI Studio/Tools/ExternalHttpCustomRootCertificateState.cs
2026-05-31 17:41:31 +02:00

11 lines
311 B
C#

namespace AIStudio.Tools;
public sealed record ExternalHttpCustomRootCertificateState(
bool IsEnabled,
string Source,
string BundlePath,
IReadOnlyList<string> AllowedHostPatterns,
bool IsUsable,
int CertificateCount,
IReadOnlyList<string> CertificateFingerprints,
string Issue);