1
0
mirror of synced 2024-07-07 10:30:37 +00:00
Tapeti/Annotations/QueueAttribute.cs

12 lines
252 B
C#
Raw Normal View History

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