1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-04-01 04:43:06 +02:00

14 lines
272 B
Python

from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
class PackageDevel(XmlModel):
XML_TAG = "devel"
project: str = Field(
xml_attribute=True,
)
package: Optional[str] = Field(
xml_attribute=True,
)