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.
30 lines
511 B
30 lines
511 B
using System.ComponentModel;
|
|
|
|
namespace MultiTerm.Protocols.Types;
|
|
|
|
public enum ProtocolType
|
|
{
|
|
/// <summary>
|
|
/// Serial Protocol
|
|
/// </summary>
|
|
[Description("Serial")]
|
|
Serial,
|
|
|
|
/// <summary>
|
|
/// USB HID Protocol
|
|
/// </summary>
|
|
[Description("USB HID")]
|
|
UsbHid,
|
|
|
|
/// <summary>
|
|
/// TCP Client Protocol
|
|
/// </summary>
|
|
[Description("TCP Client")]
|
|
Tcp_Client,
|
|
|
|
/// <summary>
|
|
/// UDP Protocol
|
|
/// </summary>
|
|
[Description("UDP")]
|
|
Udp
|
|
}
|
|
|