16 lines
349 B
C#
16 lines
349 B
C#
using System;
|
|
|
|
namespace PoweredSoft.CQRS.Abstractions.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
|
|
public class QueryNameAttribute : Attribute
|
|
{
|
|
public QueryNameAttribute(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
|
|
public string Name { get; }
|
|
}
|
|
}
|