Добавьте файлы проекта.

This commit is contained in:
2025-11-27 09:10:58 +03:00
parent 730fd30d87
commit c1f50fcca0
32 changed files with 1154 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
namespace ArgumentsToolkit.Help;
/// <summary>
/// Описание одного аргумента для справки.
/// </summary>
public class HelpEntry
{
public string Name { get; set; }
public string? ShortName { get; set; }
public string? Description { get; set; }
public string TypeName { get; set; }
public bool Required { get; set; }
public object? DefaultValue { get; set; }
}