namespace ArgumentsToolkit; /// /// Атрибут для указания кастомного конвертера для свойства. /// [AttributeUsage(AttributeTargets.Property, AllowMultiple = false)] public sealed class OptionConverterAttribute : Attribute { public Type ConverterType { get; } public OptionConverterAttribute(Type converterType) { ConverterType = converterType; } }