1
0
mirror of synced 2024-06-29 07:17:39 +00:00
Tapeti/Tapeti.Annotations/ExchangeAttribute.cs

16 lines
314 B
C#

using System;
namespace Tapeti.Annotations
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
public class ExchangeAttribute : Attribute
{
public string Name { get; set; }
public ExchangeAttribute(string name)
{
Name = name;
}
}
}