AI-Studio/app/MindWork AI Studio/Tools/ExternalHttpCustomRootCertificateState.cs

11 lines
311 B
C#
Raw Normal View History

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);