This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespace Service.Execute.Model;
public class RfidReadModel
{
/// <summary>
/// 1:成功 0:失败
/// </summary>
public int Result { get; set; }
/// 车辆VIN码
public string VelVin { get; set; }
/// 车辆MAC地址
public string? VelMac { set; get; }
/// 车辆车牌号
public string VelNo { set; get; }
}