I have a YAML document as:
name: foo
description: bar
and another YAML document as:
name: foo1
desc: bar1
I am using YamlDotNet YamlMember 'Alias' property to define the attribute name. But it lets me define only one alias. I want "description" and "desc" to deserialize to a single variable. Both cannot be present in the YAML file at the same time. Is there any way I can achieve that?