1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-02-07 19:45:48 +01:00

16 lines
293 B
Python

from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
from .enums import LocalRole
class PersonRole(XmlModel):
XML_TAG = "person"
userid: str = Field(
xml_attribute=True,
)
role: LocalRole = Field(
xml_attribute=True,
)