Refactor namespaces

pull/1/head
Tom Pipinic 2 years ago
parent 570d990a94
commit fece29b071

@ -83,7 +83,7 @@ public static class Serializer
if (value is null)
return;
var enumerable = property.GetValue(value) as IEnumerable;
var enumerable = property is not null ? property.GetValue(value) as IEnumerable : value as IEnumerable;
if (enumerable is null)
return;

Loading…
Cancel
Save