8 lines
274 B
C#
8 lines
274 B
C#
namespace SmallSoftwareContracts.Mapper;
|
|
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = true)]
|
|
class AlternativeNameAttribute(string alternativeName) : Attribute
|
|
{
|
|
public string AlternativeName { get; set; } = alternativeName;
|
|
}
|