You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
305 B
C#

using SlnMesnac.Model.domain;
using System;
namespace SlnMesnac.Model.dto
{
public class BarCodeModel
{
//扫描到的条码
public string? BarCode { get; set; }
//条码对应的识别配置
public LogoConfig? logoConfig { get; set; }
}
}