fix props deserialization (quick-xml doesn't support untagged enums)

This commit is contained in:
Lennart
2024-11-04 21:10:43 +01:00
parent 2143bc850c
commit ff95d65d44
7 changed files with 13 additions and 13 deletions

View File

@@ -33,7 +33,7 @@ pub enum CommonPropertiesProp {
CurrentUserPrivilegeSet(UserPrivilegeSet),
Owner(Option<HrefElement>),
#[serde(untagged)]
#[serde(other)]
Invalid,
}