mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-14 16:26:13 +01:00
22 lines
385 B
Python
22 lines
385 B
Python
from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
|
|
|
|
|
|
class RequestSourcediffNew(XmlModel):
|
|
XML_TAG = "new"
|
|
|
|
project: str = Field(
|
|
xml_attribute=True,
|
|
)
|
|
|
|
package: str = Field(
|
|
xml_attribute=True,
|
|
)
|
|
|
|
rev: str = Field(
|
|
xml_attribute=True,
|
|
)
|
|
|
|
srcmd5: str = Field(
|
|
xml_attribute=True,
|
|
)
|