Automated formatting: BOM removal, using sort order, final newlines, whitespace normalization across all projects. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
281 B
C#
16 lines
281 B
C#
using System;
|
|
|
|
namespace Svrnty.CQRS.Abstractions.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
|
|
public class QueryNameAttribute : Attribute
|
|
{
|
|
public QueryNameAttribute(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
|
|
public string Name { get; }
|
|
}
|
|
|