mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
18 lines
440 B
C#
18 lines
440 B
C#
namespace SharedLibraryCore.Commands
|
|
{
|
|
/// <summary>
|
|
/// Holds information about command args
|
|
/// </summary>
|
|
public class CommandArgument
|
|
{
|
|
/// <summary>
|
|
/// Name of the argument
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicates if the argument is required
|
|
/// </summary>
|
|
public bool Required { get; set; }
|
|
}
|
|
} |