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

26 lines
580 B

using BBWY.Client.Models;
using BBWY.Common.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Client.ViewModels.PackTask
{
public class SetBarCodeViewModel : BaseVM, IDenpendency
{
public SetBarCodeViewModel(BarCodeModel model)
{
BarCodeModel = model;
}
private BarCodeModel barCodeModel;
/// <summary>
/// 绑定数据
/// </summary>
public BarCodeModel BarCodeModel { get => barCodeModel; set { Set(ref barCodeModel, value); } }
}
}