Skip to content

Commit

Permalink
Update to use IReadOnlyDictionary
Browse files Browse the repository at this point in the history
Signed-off-by: Whit Waldo <whit.waldo@innovian.net>
  • Loading branch information
WhitWaldo committed Nov 1, 2024
1 parent e39d924 commit ac7f7e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ public record DaprConversationResult(string Result)
/// <summary>
/// Parameters for all custom fields.
/// </summary>
public Dictionary<string, Any> Parameters { get; init; } = new();
public IReadOnlyDictionary<string, Any> Parameters { get; init; } = new Dictionary<string, Any>();
}

0 comments on commit ac7f7e5

Please sign in to comment.