28 lines
700 B
C#
28 lines
700 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MasaBlazorApp3.Pojo.Config
|
|
{
|
|
public class PortConfig
|
|
{
|
|
public string drawerPortPath { get; set; }
|
|
|
|
public int drawerProtocol { get; set; }
|
|
|
|
public string scanCodePortPath { get; set; }
|
|
|
|
public string canBusPortPath { get; set; }
|
|
|
|
public bool canBusExsit { get; set; }
|
|
public int doorAddr { get; set; }
|
|
public int storageBoxAddr { get; set; }
|
|
//存在冰箱串口
|
|
public bool fridgePortExist { get; set; }
|
|
//冰箱串口号
|
|
public string fridgePortPath { get; set; }
|
|
}
|
|
}
|