using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MorphoCreateApp Data Structure. /// [Serializable] public class MorphoCreateApp : AopObject { /// /// 小程序类目 /// [XmlElement("app_category_ids")] public string AppCategoryIds { get; set; } /// /// 小程序描述 /// [XmlElement("app_desc")] public string AppDesc { get; set; } /// /// 小程序英文名称 /// [XmlElement("app_english_name")] public string AppEnglishName { get; set; } /// /// 小程序LOGO /// [XmlElement("app_logo")] public string AppLogo { get; set; } /// /// 小程序名称 /// [XmlElement("app_name")] public string AppName { get; set; } /// /// 小程序简介 /// [XmlElement("app_slogan")] public string AppSlogan { get; set; } /// /// 闪蝶创建小程序类型应用时应用的业务类型,目前氛围技术型和普通型,普通型不传,技术型为:'TECHNICAL_SUPPORT' /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 小程序所属PID /// [XmlElement("dev_id")] public string DevId { get; set; } /// /// 小程序ID,使用已有小程序创建闪蝶站点时使用 /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } /// /// 客服电话 /// [XmlElement("service_phone")] public string ServicePhone { get; set; } /// /// 闪蝶应用名称 /// [XmlElement("title")] public string Title { get; set; } /// /// 创建的闪蝶应用的类型:小程序、H5等 /// [XmlElement("type")] public string Type { get; set; } } }