using System;
namespace EC.AutoWeightServer.Model.EventArgsEx
{
///
/// 称重事件
///
public class ScaleEventArgs : EventArgs
{
///
/// 重量
///
public decimal Weight { get; }
///
/// 重量单位
///
public string Units { get; }
//事件参数重载
public ScaleEventArgs(decimal weight, string units = "kg")
{
this.Weight = weight;
this.Units = units;
}
}
}