I18NCommander/I18N Commander/Processor/ProcessorResult.cs

3 lines
149 B
C#
Raw Normal View History

namespace Processor;
public readonly record struct ProcessorResult<TResult>(TResult? Result, bool Successful = true, string ErrorMessage = "");