NewGaoKaoApi/PaymentSDK/AliPay/Domain/MerchantBaseEnterOpenModel.cs

31 lines
877 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// MerchantBaseEnterOpenModel Data Structure.
/// </summary>
[Serializable]
public class MerchantBaseEnterOpenModel : AopObject
{
/// <summary>
/// 商户logo文件流信息该字段为文件流经base64编码后得到的字符串。
/// </summary>
[XmlElement("logo_info")]
public string LogoInfo { get; set; }
/// <summary>
/// 商户品牌全称。
/// </summary>
[XmlElement("m_name")]
public string MName { get; set; }
/// <summary>
/// 商户品牌简称,只能由大写字母、下划线、数字组成,且必须以大写字母开头。
/// </summary>
[XmlElement("m_short_name")]
public string MShortName { get; set; }
}
}