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.
34 lines
717 B
34 lines
717 B
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace BBWY.Client.Models.APIModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public class SearchProductAttrsBySkuIdResponse
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 品牌
|
||
|
/// </summary>
|
||
|
public string Brand { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 是否在集团品牌列表
|
||
|
/// </summary>
|
||
|
public bool IsTeamBrand { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 适用年龄
|
||
|
/// </summary>
|
||
|
public string ApplyAge { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 适用年龄是否大于14
|
||
|
/// </summary>
|
||
|
public bool? IsApplyAgeOver14 { get; set; }
|
||
|
}
|
||
|
}
|