namespace LanMountainDesktop.Launcher.Models; /// /// 隐私配置模型 /// public class PrivacyConfig { /// /// 是否启用崩溃报告遥测 /// public bool CrashTelemetryEnabled { get; set; } = true; /// /// 是否启用使用统计遥测 /// public bool UsageTelemetryEnabled { get; set; } = true; /// /// 隐私追踪 ID /// public string TelemetryId { get; set; } = string.Empty; }