forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
13 lines
347 B
C#
13 lines
347 B
C#
namespace MagicCarpetContracts.Mapper;
|
|
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = true)]
|
|
public class AlternativeNameAttribute : Attribute
|
|
{
|
|
public string AlternativeName { get; }
|
|
|
|
public AlternativeNameAttribute(string alternativeName)
|
|
{
|
|
AlternativeName = alternativeName;
|
|
}
|
|
}
|