public GitResult(GitResultType resultType, string message) { ResultType = resultType; Message = message; }
public GitResult(GitResultType resultType, string messageFormat, params object[] arguments) : this(resultType, string.Format(messageFormat, arguments)) { }