Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/RawRabbit.Enrichers.Attributes/ExchangeAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class ExchangeAttribute : Attribute

public string Name { get; set; }
public ExchangeType Type { get; set; }
public bool Durable { set { NullableDurability = value; } }
public bool AutoDelete { set { NullableAutoDelete = value; } }
public bool Durable { get { return NullableDurability.GetValueOrDefault(); } set { NullableDurability = value; } }
public bool AutoDelete { get { return NullableAutoDelete.GetValueOrDefault(); } set { NullableAutoDelete = value; } }
}
}