Cosmos/source2/Build/Cosmos.Build.Common/DebugQemuProperties.cs
DanStory_cp 3736486d0b Added PropertiesBase(.cs) class and file.
Added BuildProperties(.cs) class and file.
Added DebugQemuProperties(.cs) class and file.
Added VMQemuProperties(.cs) class and file.
2009-05-29 02:24:55 +00:00

18 lines
398 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Build.Common
{
public class DebugQemuProperties : PropertiesBase
{
public DebugQemuCommunication Communication
{
get { return this.GetProperty("QemuCommunication", DebugQemuCommunication.None); }
set { this.SetProperty("QemuCommunication", value); }
}
}
}