mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-12 09:52:17 +00:00
11 lines
311 B
C#
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); |