2025-10-11 18:25:59 +08:00

19 lines
399 B
C#

namespace XiaoZhiSharp.Utils.Com
{
/// <summary>
/// 配置Linux串口信息
/// </summary>
public class LinuxCom
{
/// <summary>
/// Linux下串口号
/// </summary>
public int LinuxPort { set; get; }
/// <summary>
/// Linux下串口类型
/// </summary>
public LinuxComType LinuxComType { set; get; }
}
}