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
490 B
30 lines
490 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 Protocol
|
|
/// </summary>
|
|
[Description("TCP")]
|
|
Tcp,
|
|
|
|
/// <summary>
|
|
/// UDP Protocol
|
|
/// </summary>
|
|
[Description("UCP")]
|
|
Udp
|
|
}
|
|
|