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