mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
12 lines
376 B
C#
12 lines
376 B
C#
using Daybreak.Shared.Attributes;
|
|
|
|
namespace Daybreak.Configuration.Options;
|
|
|
|
[OptionsName(Name = "Telemetry")]
|
|
[OptionsIgnore]
|
|
public sealed class TelemetryOptions
|
|
{
|
|
[OptionName(Name = "Enabled", Description = "If true, Daybreak will send application telemetry (scrubbed logs, metrics, errors) to a managed instance")]
|
|
public bool Enabled { get; set; } = false;
|
|
}
|