Sic.Framework/MECF.Framework.Common/MECF/Framework/Common/Schedulers/EnumTransferType.cs

11 lines
136 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
namespace MECF.Framework.Common.Schedulers
{
public enum EnumTransferType
{
Pick = 0,
Place = 1,
Extend = 2,
Retract = 3
}
}