Skip to content

Commit

Permalink
string? Node
Browse files Browse the repository at this point in the history
  • Loading branch information
inikulshin authored Dec 20, 2023
1 parent d87dba2 commit e5b7295
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1078,7 +1078,7 @@ namespace EasyNetQ.Management.Client.Model
string Name,
string Vhost,
EasyNetQ.Management.Client.Model.QueueType Type,
string Node,
string? Node,
string? State,
System.Collections.Generic.IReadOnlyDictionary<string, object?> Arguments,
bool Durable,
Expand Down Expand Up @@ -1167,7 +1167,7 @@ namespace EasyNetQ.Management.Client.Model
}
public class QueueWithoutStats : EasyNetQ.Management.Client.Model.QueueName, System.IEquatable<EasyNetQ.Management.Client.Model.QueueWithoutStats>
{
public QueueWithoutStats(string Name, string Vhost, EasyNetQ.Management.Client.Model.QueueType Type, string Node, string? State, System.Collections.Generic.IReadOnlyDictionary<string, object?> Arguments, bool Durable, bool Exclusive, bool AutoDelete, long MessagesReady, long MessagesUnacknowledged, long Messages) { }
public QueueWithoutStats(string Name, string Vhost, EasyNetQ.Management.Client.Model.QueueType Type, string? Node, string? State, System.Collections.Generic.IReadOnlyDictionary<string, object?> Arguments, bool Durable, bool Exclusive, bool AutoDelete, long MessagesReady, long MessagesUnacknowledged, long Messages) { }
[System.Text.Json.Serialization.JsonConverter(typeof(EasyNetQ.Management.Client.Serialization.StringObjectReadOnlyDictionaryConverter))]
public System.Collections.Generic.IReadOnlyDictionary<string, object?> Arguments { get; init; }
public bool AutoDelete { get; init; }
Expand All @@ -1176,7 +1176,7 @@ namespace EasyNetQ.Management.Client.Model
public long MessagesReady { get; init; }
public long MessagesUnacknowledged { get; init; }
public long Messages { get; init; }
public string Node { get; init; }
public string? Node { get; init; }
public string? State { get; init; }
public EasyNetQ.Management.Client.Model.QueueType Type { get; init; }
}
Expand Down

0 comments on commit e5b7295

Please sign in to comment.