mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-15 08:36:13 +01:00
18 lines
372 B
Python
18 lines
372 B
Python
|
from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
|
||
|
|
||
|
|
||
|
class ProjectLink(XmlModel):
|
||
|
XML_TAG = "link"
|
||
|
|
||
|
project: str = Field(
|
||
|
xml_attribute=True,
|
||
|
)
|
||
|
|
||
|
class VrevmodeEnum(str, Enum):
|
||
|
UNEXTEND = "unextend"
|
||
|
EXTEND = "extend"
|
||
|
|
||
|
vrevmode: Optional[VrevmodeEnum] = Field(
|
||
|
xml_attribute=True,
|
||
|
)
|