12 lines
252 B
C#
12 lines
252 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Tapeti.Annotations
|
|||
|
{
|
|||
|
[AttributeUsage(AttributeTargets.Class)]
|
|||
|
public class QueueAttribute : Attribute
|
|||
|
{
|
|||
|
public string Name { get; set; } = null;
|
|||
|
public bool Dynamic { get; set; } = false;
|
|||
|
}
|
|||
|
}
|