24 lines
544 B
C#
24 lines
544 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; }
|
|
}
|
|
}
|