IW4M-Admin/SharedLibraryCore/Commands/CommandArgument.cs

18 lines
440 B
C#
Raw Normal View History

namespace SharedLibraryCore.Commands
{
/// <summary>
2022-01-26 11:32:16 -05:00
/// Holds information about command args
/// </summary>
public class CommandArgument
{
/// <summary>
2022-01-26 11:32:16 -05:00
/// Name of the argument
/// </summary>
public string Name { get; set; }
/// <summary>
2022-01-26 11:32:16 -05:00
/// Indicates if the argument is required
/// </summary>
public bool Required { get; set; }
}
2022-01-26 11:32:16 -05:00
}