Skip to content

Commit 513eda5

Browse files
committed
Automated dotnet-format update from commit c01ed9f on refs/heads/dev
1 parent c01ed9f commit 513eda5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/WeihanLi.Common/Models/ValidationResult.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ public interface IValidationResult
1818
Dictionary<string, string[]> Errors { get; }
1919
}
2020

21-
public sealed class ValidationResult: IValidationResult
21+
public sealed class ValidationResult : IValidationResult
2222
{
2323
private Dictionary<string, string[]> _errors = new();
24-
24+
2525
/// <inheritdoc cref="IValidationResult"/>
2626
public bool Valid { get; set; }
2727

@@ -43,7 +43,7 @@ public static ValidationResult Failed(params string[] errors)
4343
};
4444
return result;
4545
}
46-
46+
4747
public static ValidationResult Failed(Dictionary<string, string[]> errors)
4848
{
4949
var result = new ValidationResult

0 commit comments

Comments
 (0)