using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEcoEprintCodeNotifyModel Data Structure.
///
[Serializable]
public class AlipayEcoEprintCodeNotifyModel : AopObject
{
///
/// 授权code
///
[XmlElement("code")]
public string Code { get; set; }
///
/// 授权门店ID
///
[XmlElement("store_id")]
public string StoreId { get; set; }
}
}