17 lines
536 B
C#
17 lines
536 B
C#
// <copyright file="BanCharChatCommandArgs.cs" company="MUnique">
|
|
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
|
|
// </copyright>
|
|
|
|
namespace MUnique.OpenMU.GameLogic.PlugIns.ChatCommands.Arguments;
|
|
|
|
/// <summary>
|
|
/// Arguments used by BanCharChatCommandPlugIn.
|
|
/// </summary>
|
|
public class BanCharChatCommandArgs : ArgumentsBase
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the character name.
|
|
/// </summary>
|
|
[Argument("char")]
|
|
public string? CharacterName { get; set; }
|
|
} |