namespace IStation.Model
{
///
/// 系数
///
public class Coefficients
{
public Coefficients() { }
public Coefficients(Coefficients rhs)
{
if (rhs != null)
{
this.A = rhs.A;
this.B = rhs.B;
this.C = rhs.C;
}
}
///
/// 系数 A
///
public double A { get; set; }
///
/// 系数 B
///
public double B { get; set; }
///
/// 系数 C
///
public double C { get; set; }
}
}