mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
30 lines
717 B
C#
30 lines
717 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Build.Common
|
|
{
|
|
public class VMProperties : PropertiesBase
|
|
{
|
|
|
|
public VMQemuNetworkCard NetworkCard
|
|
{
|
|
get { return this.GetProperty("QemuNetworkCard", VMQemuNetworkCard.None); }
|
|
set { this.SetProperty("QemuNetworkCard", value); }
|
|
}
|
|
|
|
public Boolean EnableNetworkTAP
|
|
{
|
|
get { return this.GetProperty("QemuNetworkTAP", false); }
|
|
set { this.SetProperty("QemuNetworkTAP", value); }
|
|
}
|
|
|
|
public VMQemuAudioCard AudioCard
|
|
{
|
|
get { return this.GetProperty("QemuAudioCard", VMQemuAudioCard.None); }
|
|
set { this.SetProperty("QemuAudioCard", value); }
|
|
}
|
|
|
|
}
|
|
}
|