-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.cs
More file actions
30 lines (25 loc) · 953 Bytes
/
Config.cs
File metadata and controls
30 lines (25 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// -----------------------------------------------------------------------
// <copyright file="Config.cs" company="Redforce04">
// Copyright (c) Redforce04. All rights reserved.
// Licensed under the CC BY-SA 3.0 license.
// </copyright>
// -----------------------------------------------------------------------
namespace AdvancedCommandLibrary;
using System.ComponentModel;
using Enums;
/// <summary>
/// The main plugin configuration.
/// </summary>
public class Config
{
/// <summary>
/// Gets or sets the logging mode.
/// </summary>
[Description("Indicates the logging mode. Options: Info, Debug, Insanity, Ludicrous.")]
public LoggingMode LoggingMode { get; set; } = LoggingMode.Info;
/// <summary>
/// Gets or sets a value indicating whether the plugin should be enabled.
/// </summary>
[Description("Indicates whether the plugin should be enabled.")]
public bool IsEnabled { get; set; } = true;
}