using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Client.Models.APIModel
{
///
///
///
public class SearchProductAttrsBySkuIdResponse
{
///
/// 品牌
///
public string Brand { get; set; }
///
/// 是否在集团品牌列表
///
public bool IsTeamBrand { get; set; }
///
/// 适用年龄
///
public string ApplyAge { get; set; }
///
/// 适用年龄是否大于14
///
public bool? IsApplyAgeOver14 { get; set; }
}
}