namespace HStation.WinFrmUI
{
///
/// 项目视图
///
public class SimulationPrintProjectViewModel
{
///
///
///
public SimulationPrintProjectViewModel(HStation.Vmo.XhsProjectVmo rhs)
{
this.ID = rhs.ID;
this.Name = rhs.Name;
this.Description = rhs.Description;
}
///
/// ID
///
public long ID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}