10 lines
234 B
C#
10 lines
234 B
C#
namespace ArgumentsToolkit;
|
|
|
|
public class ParseResult<T> where T : class, new()
|
|
{
|
|
public T? Value { get; internal set; }
|
|
public bool Success { get; internal set; }
|
|
public List<ArgumentError> Errors { get; } = new();
|
|
}
|
|
|