NewGaoKaoApi/PaymentSDK/AliPay/Domain/BindedMiniAppInfo.cs

55 lines
1.4 KiB
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>
/// BindedMiniAppInfo Data Structure.
/// </summary>
[Serializable]
public class BindedMiniAppInfo : AopObject
{
/// <summary>
/// 开发者名称
/// </summary>
[XmlElement("dev_name")]
public string DevName { get; set; }
/// <summary>
/// 小程序应用ID
/// </summary>
[XmlElement("mini_app_id")]
public string MiniAppId { get; set; }
/// <summary>
/// 小程序logo url地址
/// </summary>
[XmlElement("mini_app_logo")]
public string MiniAppLogo { get; set; }
/// <summary>
/// 小程序名称
/// </summary>
[XmlElement("mini_app_name")]
public string MiniAppName { get; set; }
/// <summary>
/// 小程序的简介
/// </summary>
[XmlElement("mini_app_slogan")]
public string MiniAppSlogan { get; set; }
/// <summary>
/// true小程序在架 false小程序当前未在架
/// </summary>
[XmlElement("online")]
public bool Online { get; set; }
/// <summary>
/// 当前小程序是否加入AMPE计划小程序开发者可以自行进行AMPE的开通和关闭
/// </summary>
[XmlElement("support_ampe")]
public bool SupportAmpe { get; set; }
}
}