mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-06-07 08:56:32 +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);
|