Skip to content

Commit

Permalink
docs: Indicate the default value of the Status property
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDave1999 committed Nov 20, 2023
1 parent 01d0857 commit 421643c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Core/ResultBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ public abstract class ResultBase
/// <summary>
/// Gets the current status of a result.
/// </summary>
/// <value>
/// The current status of a result.
/// Its default value is a <see cref="ResultStatus.Failure"/>.
/// </value>
[JsonIgnore]
public ResultStatus Status { get; init; } = ResultStatus.Failure;
}

0 comments on commit 421643c

Please sign in to comment.