7 lines
196 B
C#
7 lines
196 B
C#
namespace Baguette.Querying;
|
|
|
|
[AttributeUsage(AttributeTargets.Property, AllowMultiple = true)]
|
|
public class SortAliasAttribute(string name) : Attribute
|
|
{
|
|
public string Name { get; } = name;
|
|
} |