2024-11-19 11:48:21 +01:00

14 lines
308 B
C#

namespace Gley.UrbanSystem.Internal
{
public readonly struct ExecutionResult<T>
{
public T Value { get; }
public string Error { get; }
public ExecutionResult(T value, string error)
{
Value = value;
Error = error;
}
}
}