mirror of
https://github.com/virt-manager/virt-manager.git
synced 2024-12-23 17:34:21 +03:00
cd5c34a3f3
Closes: #264 Signed-off-by: Cole Robinson <crobinso@redhat.com>
13 lines
287 B
Python
13 lines
287 B
Python
# 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")
|