2024-10-10 17:13:39 +02:00

7 lines
196 B
C#

namespace Baguette.Querying;
[AttributeUsage(AttributeTargets.Property, AllowMultiple = true)]
public class SortAliasAttribute(string name) : Attribute
{
public string Name { get; } = name;
}