using BBWY.Client.Models.APIModel;
using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Client.Models
{
public class WareNoSealBoxModel:NotifyObject
{
private bool isHideSkuList = true;//默认隐藏
public bool IsHideSkuList { get => isHideSkuList; set { Set(ref isHideSkuList, value); } }
///
/// 店铺Id
///
public string ShopId { get; set; }
///
/// 店铺名称
///
public string ShopName { get; set; }
///
/// 团队名称
///
public string DepartmentName { get; set; }
///
/// 对接人(同团队下)
///
public string AcceptUserName { get; set; }
///
/// 封箱sku列表
///
private List sealBoxSkus;
///
/// 封箱sku列表
///
public List SealBoxSkus { get=> sealBoxSkus; set {Set(ref sealBoxSkus, value); } }
}
}