diff --git a/Tapeti.Annotations/StaticQueueAttribute.cs b/Tapeti.Annotations/DurableQueueAttribute.cs
similarity index 87%
rename from Tapeti.Annotations/StaticQueueAttribute.cs
rename to Tapeti.Annotations/DurableQueueAttribute.cs
index 2a9c6b1..bf4cac7 100644
--- a/Tapeti.Annotations/StaticQueueAttribute.cs
+++ b/Tapeti.Annotations/DurableQueueAttribute.cs
@@ -12,12 +12,12 @@ namespace Tapeti.Annotations
/// for deploy-time management of durable queues (shameless plug intended).
///
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
- public class StaticQueueAttribute : Attribute
+ public class DurableQueueAttribute : Attribute
{
public string Name { get; set; }
- public StaticQueueAttribute(string name)
+ public DurableQueueAttribute(string name)
{
Name = name;
}
diff --git a/Tapeti.Annotations/Tapeti.Annotations.csproj b/Tapeti.Annotations/Tapeti.Annotations.csproj
index 55b874f..4413722 100644
--- a/Tapeti.Annotations/Tapeti.Annotations.csproj
+++ b/Tapeti.Annotations/Tapeti.Annotations.csproj
@@ -46,7 +46,7 @@
-
+