Files
KArtSell.Aegis/docs/Design/kbx-foundation-v36/backend/Shared/Contracts/KbxFieldKeyAttribute.cs
T

8 lines
244 B
C#

namespace Kbx.Contracts;
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Parameter, AllowMultiple = false)]
public sealed class KbxFieldKeyAttribute(string fieldKey) : Attribute
{
public string FieldKey { get; } = fieldKey;
}