1
0
mirror of https://github.com/oliverbooth/VpSharp synced 2024-11-10 07:55:42 +00:00
VpSharp/VpSharp.Commands/CommandsExtensionConfiguration.cs

14 lines
451 B
C#
Raw Normal View History

2022-11-27 20:43:21 +00:00
namespace VpSharp.Commands;
/// <summary>
/// Defines configuration for <see cref="CommandsExtensionConfiguration" />.
/// </summary>
public sealed class CommandsExtensionConfiguration
{
/// <summary>
/// Gets or sets the prefixes to be use for commands.
/// </summary>
/// <value>The command prefixes, as an array of <see cref="string" /> values.</value>
public string[] Prefixes { get; set; } = Array.Empty<string>();
}