using HStation.Vmo;
namespace HStation.WinFrmUI
{
///
///
///
public class XhsProjectSimulationSchemeMgrViewModel
{
///
///
///
public XhsProjectSimulationSchemeMgrViewModel() { }
///
///
///
public XhsProjectSimulationSchemeMgrViewModel(XhsSchemeVmo rhs)
{
this.ID = rhs.ID;
this.Name = rhs.Name;
this.Vmo = rhs;
}
///
/// ID
///
public long ID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
///
///
public XhsSchemeVmo Vmo { get; set; }
}
}