Skip to content

Commit a1f5f0c

Browse files
Made ResultObject nullable.
1 parent 0aa7467 commit a1f5f0c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/OneBitSoftware.Utilities.OperationResult/OperationResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ public OperationResult(TResult resultObject) : base()
264264
/// <summary>
265265
/// Gets or sets the related result object of the operation.
266266
/// </summary>
267-
public TResult ResultObject { get; set; }
267+
public TResult? ResultObject { get; set; }
268268

269269
/// <summary>
270270
/// This method will append an error with a specific `user-friendly` message to this operation result instance.

0 commit comments

Comments
 (0)