I'm porting my configuration file from .json to .yaml format. In Newtonsoft.Json I was able to apply attribute to a property which needed custom converter, for example
[JsonConverter(typeof(CustomIdConverter))]
public IList<CustomID> Users { get; set; }
How would I do the same using YamlDotNet?
I know converters should implement IYamlTypeConverter
interface, but how would I apply this converter to exact property?