Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/Dapr.Client/StateQueryResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ You may obtain a copy of the License at
limitations under the License.
*/

#nullable enable
using System.Collections.Generic;

namespace Dapr.Client
Expand Down Expand Up @@ -75,9 +76,9 @@ public StateQueryItem(string key, TValue data, string etag, string error)
public string Key { get; }

/// <summary>
/// The data of the the key from the matched query.
/// The data of the key from the matched query.
/// </summary>
public TValue Data { get; }
public TValue? Data { get; }

/// <summary>
/// The ETag for the key from the matched query.
Expand Down