mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-15 08:36:13 +01:00
16 lines
293 B
Python
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,
|
||
|
)
|