using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// Retailer Data Structure.
///
[Serializable]
public class Retailer : AopObject
{
///
/// 零售商名称
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// 零售商pid
///
[JsonProperty("partner_id")]
public string PartnerId { get; set; }
}
}