Cosmos/source2/Build/Cosmos.Build.Common/VMProperties.cs
kudzu_cp 6521e75e48
2010-07-26 04:30:50 +00:00

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); }
}
}
}