2019-04-11 21:43:05 -04:00
|
|
|
|
using System;
|
|
|
|
|
|
2019-04-14 11:55:05 -04:00
|
|
|
|
namespace SharedLibraryCore.Configuration.Attributes
|
2019-04-11 21:43:05 -04:00
|
|
|
|
{
|
|
|
|
|
[AttributeUsage(AttributeTargets.Property, Inherited = false)]
|
2019-04-14 11:55:05 -04:00
|
|
|
|
public class ConfiguratinLinked : Attribute
|
2019-04-11 21:43:05 -04:00
|
|
|
|
{
|
|
|
|
|
public string[] LinkedPropertyNames { get; set; }
|
|
|
|
|
|
2019-04-14 11:55:05 -04:00
|
|
|
|
public ConfiguratinLinked(params string[] linkedPropertyNames)
|
2019-04-11 21:43:05 -04:00
|
|
|
|
{
|
|
|
|
|
LinkedPropertyNames = linkedPropertyNames;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|