16 lines
409 B
C#
16 lines
409 B
C#
using System;
|
|
|
|
namespace SharedLibraryCore.Configuration.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property, Inherited = false)]
|
|
public class ConfigurationLinked : Attribute
|
|
{
|
|
public string[] LinkedPropertyNames { get; set; }
|
|
|
|
public ConfigurationLinked(params string[] linkedPropertyNames)
|
|
{
|
|
LinkedPropertyNames = linkedPropertyNames;
|
|
}
|
|
}
|
|
}
|