mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-14 16:26:13 +01:00
16 lines
292 B
Python
16 lines
292 B
Python
|
from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
|
||
|
|
||
|
from .enums import LocalRole
|
||
|
|
||
|
|
||
|
class GroupRole(XmlModel):
|
||
|
XML_TAG = "group"
|
||
|
|
||
|
groupid: str = Field(
|
||
|
xml_attribute=True,
|
||
|
)
|
||
|
|
||
|
role: LocalRole = Field(
|
||
|
xml_attribute=True,
|
||
|
)
|