Dispenser/DispenserCore/Model/Enum/PcbDetectStrategyEnum.cs

9 lines
211 B
C#
Raw Normal View History

2024-08-16 07:20:09 +00:00
using System.ComponentModel;
namespace DispenserCore.Model.Enum;
public enum PcbDetectStrategyEnum
{
[Description("Mark点识别")]ByMark = 1,
[Description("焊点模板匹配")]TemplateMatch = 2,
}