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

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,
)