mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-14 00:06:15 +01:00
10 lines
199 B
Python
10 lines
199 B
Python
from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
|
|
|
|
|
|
class PersonOwner(XmlModel):
|
|
XML_TAG = "owner"
|
|
|
|
userid: str = Field(
|
|
xml_attribute=True,
|
|
)
|