using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ButcherFactory.SegmentProductionAuto_
{
internal class WeightStatus
{
private bool isZero;
///
/// 零点状态
///
public bool ZeroStatus
{
get { return isZero; }
set { isZero = value; }
}
private bool isTare;
///
/// 扣重状态
///
public bool TareStatus
{
get { return isTare; }
set { isTare = value; }
}
private bool isStable;
///
/// 稳定状态
///
public bool StableStatus
{
get { return isStable; }
set { isStable = value; }
}
}
}