mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-16 00:56:12 +01:00
14 lines
278 B
Python
14 lines
278 B
Python
from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
|
|
|
|
|
|
class RepositoryHostsystem(XmlModel):
|
|
XML_TAG = "hostsystem"
|
|
|
|
repository: str = Field(
|
|
xml_attribute=True,
|
|
)
|
|
|
|
project: str = Field(
|
|
xml_attribute=True,
|
|
)
|