namespace ArgumentsToolkit; public class ParseResult where T : class, new() { public T? Value { get; internal set; } public bool Success { get; internal set; } public List Errors { get; } = new(); }