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