dotnet-cqrs/PoweredSoft.CQRS.Abstractions/Attributes/QueryNameAttribute.cs
2023-10-02 11:25:45 -04:00

16 lines
326 B
C#

using System;
namespace PoweredSoft.CQRS.Abstractions.Attributes
{
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
public class QueryNameAttribute : Attribute
{
public QueryNameAttribute(string name)
{
Name = name;
}
public string Name { get; }
}
}