2019-04-11 20:43:05 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
2019-04-14 10:55:05 -05:00
|
|
|
|
namespace SharedLibraryCore.Configuration.Attributes
|
2019-04-11 20:43:05 -05:00
|
|
|
|
{
|
2022-01-26 10:32:16 -06:00
|
|
|
|
[AttributeUsage(AttributeTargets.Property)]
|
2019-07-17 12:29:51 -05:00
|
|
|
|
public class ConfigurationLinked : Attribute
|
2019-04-11 20:43:05 -05:00
|
|
|
|
{
|
2019-07-17 12:29:51 -05:00
|
|
|
|
public ConfigurationLinked(params string[] linkedPropertyNames)
|
2019-04-11 20:43:05 -05:00
|
|
|
|
{
|
|
|
|
|
LinkedPropertyNames = linkedPropertyNames;
|
|
|
|
|
}
|
2022-01-26 10:32:16 -06:00
|
|
|
|
|
|
|
|
|
public string[] LinkedPropertyNames { get; set; }
|
2019-04-11 20:43:05 -05:00
|
|
|
|
}
|
2022-01-26 10:32:16 -06:00
|
|
|
|
}
|