dotnet-cqrs/OpenHarbor.CQRS.Abstractions/Attributes/QueryNameAttribute.cs
Mathias Beaulieu-Duncan 1c81288895 update namespaces
refactor the name of the organisation
2023-11-04 15:24:56 -04:00

16 lines
288 B
C#

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