mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
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;
|
|
}
|
|
}
|
|
}
|