You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
209 B

namespace EC.AutoWeightServer.Model.State
{
/// <summary>
/// 当前称重状态
/// Empty:空闲; In:进入; Out:离开;
/// </summary>
public enum CarState
{
Empty = 0,
In = 1,
Out = 2
}
}