using BBWY.Client.Models.SealBox;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Text;
namespace BBWY.Client.Models.FallWare
{
public class FallWareWaitConfigureModel
{
///
/// 封箱id
///
public long SealBoxId { get; set; }
///
/// 箱子总数量
///
public int SealBoxTotalCount { get; set; }
///
/// 仓库名称
///
public string WareName { get; set; }
///
/// 仓库类型
///
public WareType? WareType { get; set; }
///
/// 仓库任务列表
///
public ObservableCollection SealBoxConfigureTasks { get; set; }
}
}