namespace LumaTunnel.Shared.Windows; public sealed record SystemProxySnapshot { public int ProxyEnable { get; init; } public string? ProxyServer { get; init; } public string? ProxyOverride { get; init; } public string? AutoConfigUrl { get; init; } public int? AutoDetect { get; init; } public byte[]? DefaultConnectionSettings { get; init; } public byte[]? SavedLegacySettings { get; init; } public required string OwnerId { get; init; } public DateTimeOffset CapturedAtUtc { get; init; } = DateTimeOffset.UtcNow; }