using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace HStation.WinFrmUI
|
{
|
internal class XhsProjectSimualtionAnalySingleResultViewModel
|
{
|
public long ID { get; set; }
|
|
public string Name { get; set; }
|
|
public string Code { get; set; }
|
|
public bool IsBp { get; set; }
|
|
public string RunStatus { get; set; }
|
|
public double CurrentHz { get; set; }
|
|
|
|
}
|
}
|