Skip to content

Commit

Permalink
Merge branch 'main' into serialization-proposal
Browse files Browse the repository at this point in the history
  • Loading branch information
mtmk committed Oct 30, 2023
2 parents a68be08 + 645856f commit e035240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NATS.Client.JetStream/Models/StreamState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public record StreamState
/// </summary>
[System.Text.Json.Serialization.JsonPropertyName("subjects")]
[System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)]
public System.Collections.Generic.IDictionary<string, long> Subjects { get; set; } = default!;
public System.Collections.Generic.IDictionary<string, long>? Subjects { get; set; } = null;

/// <summary>
/// The number of unique subjects held in the stream
Expand Down

0 comments on commit e035240

Please sign in to comment.