mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-12-06 14:23:41 +00:00
16 lines
460 B
C#
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;
|
|
}
|
|
}
|