virt-manager/virtinst/devices/audio.py

13 lines
287 B
Python
Raw Normal View History

2024-05-17 13:37:53 +08:00
# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
from .device import Device
from ..xmlbuilder import XMLProperty
class DeviceAudio(Device):
XML_NAME = "audio"
type = XMLProperty("./@type")
id = XMLProperty("./@id")