61 lines
1.6 KiB
C#
61 lines
1.6 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// MiniappCloudDetailInfo Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class MiniappCloudDetailInfo : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 小程序应用描述
|
|
/// </summary>
|
|
[XmlElement("app_desc")]
|
|
public string AppDesc { get; set; }
|
|
|
|
/// <summary>
|
|
/// 小程序应用英文名称
|
|
/// </summary>
|
|
[XmlElement("app_english_name")]
|
|
public string AppEnglishName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 小程序应用logo图标
|
|
/// </summary>
|
|
[XmlElement("app_logo")]
|
|
public string AppLogo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 小程序应用名称
|
|
/// </summary>
|
|
[XmlElement("app_name")]
|
|
public string AppName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 小程序应用简介,一句话描述小程序功能
|
|
/// </summary>
|
|
[XmlElement("app_slogan")]
|
|
public string AppSlogan { get; set; }
|
|
|
|
/// <summary>
|
|
/// 生活服务_汽车服务
|
|
/// </summary>
|
|
[XmlElement("category_names")]
|
|
public string CategoryNames { get; set; }
|
|
|
|
/// <summary>
|
|
/// 小程序创建时间
|
|
/// </summary>
|
|
[XmlElement("create_time")]
|
|
public string CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 小程序应用的appid
|
|
/// </summary>
|
|
[XmlElement("mini_appid")]
|
|
public string MiniAppid { get; set; }
|
|
}
|
|
}
|