namespace BBWY.Client.Models
{
public class OrderSkuResponse
{
///
/// 购买数量
///
public int ItemTotal { get; set; }
public string Id { get; set; }
public string ProductId { get; set; }
public string ProductNo { get; set; }
public double Price { get; set; }
///
/// Sku标题
///
public string Title { get; set; }
public string Logo { get; set; }
///
/// 代发信息Id
///
public long? OrderDropShippingId { get; set; }
public bool IsRefund { get; set; } = false;
}
}