mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-24 10:28:45 +08:00
16 lines
234 B
C#
16 lines
234 B
C#
namespace mRemoteNG.Connection.Protocol.Serial
|
|
{
|
|
public class ProtocolSerial : PuttyBase
|
|
{
|
|
|
|
public ProtocolSerial()
|
|
{
|
|
this.PuttyProtocol = Putty_Protocol.serial;
|
|
}
|
|
|
|
public enum Defaults
|
|
{
|
|
Port = 9600
|
|
}
|
|
}
|
|
} |