welsonjs/WelsonJS.Augmented/WelsonJS.Launcher/Telemetry/TelemetryOptions.cs
Namhyeon, Go fdabeab54f Change the project name to WelsonJS.Toolkit to WelsonJS.Augmented
Change the project name to WelsonJS.Toolkit to WelsonJS.Augmented
2025-12-14 18:54:32 +09:00

16 lines
460 B
C#

// TelemetryOptions.cs
// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-FileCopyrightText: 2025 Catswords OSS and WelsonJS Contributors
// https://github.com/gnh1201/welsonjs
//
namespace WelsonJS.Launcher.Telemetry
{
public class TelemetryOptions
{
public string ApiKey { get; set; }
public string BaseUrl { get; set; }
public string DistinctId { get; set; }
public bool Disabled { get; set; } = false;
}
}