Dispenser/DispenserCore/Model/Enum/ScannerInterfaceEnum.cs

34 lines
594 B
C#
Raw Permalink Normal View History

2024-08-16 07:20:09 +00:00
using System.ComponentModel;
namespace DispenserCore.Model.Enum;
/// <summary>
/// 扫码枪接口类型
/// </summary>
public enum ScannerInterfaceEnum
{
/// <summary>
/// 串口
/// </summary>
[Description("串口")] Serial,
/// <summary>
/// TCP
/// </summary>
[Description("网口")] Tcp,
/// <summary>
/// USB
/// </summary>
[Description("USB")] Usb,
/// <summary>
/// 蓝牙
/// </summary>
[Description("蓝牙")] Bluetooth,
/// <summary>
/// 无线
/// </summary>
[Description("无线")] Wireless
}