using System;
using System.Xml.Serialization;
namespace Top.Api.Domain
{
///
/// Brand Data Structure.
///
[Serializable]
public class Brand : TopObject
{
///
/// vid的值
///
[XmlElement("name")]
public string Name { get; set; }
///
/// 品牌的属性id
///
[XmlElement("pid")]
public long Pid { get; set; }
///
/// 品牌的属性名
///
[XmlElement("prop_name")]
public string PropName { get; set; }
///
/// 对应属性的 pid:vid 串中的vid
///
[XmlElement("vid")]
public long Vid { get; set; }
}
}