namespace TProduct.SettingModel
{
public class AverageSetting
{
///
/// Flow
///
public int FeatPtFlow { get; set; } = 3;
///
/// Flow
///
public int RefreshPtFlow { get; set; } = 1;
///
/// Press
///
public int FeatPtPress { get; set; } = 3;
///
/// Press
///
public int RefreshPtPress { get; set; } = 1;
///
/// Power
///
public int FeatPtPower { get; set; } = 3;
///
/// Power
///
public int RefreshPtPower { get; set; } = 1;
///
/// Other
///
public int FeatPtOther { get; set; } = 3;
///
/// Other
///
public int RefreshPtOther { get; set; } = 1;
}
}