using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenAuthIndustryPlatformCreateTokenModel Data Structure. /// [Serializable] public class AlipayOpenAuthIndustryPlatformCreateTokenModel : AopObject { /// /// isvēš„appid /// [XmlElement("isv_appid")] public string IsvAppid { get; set; } /// /// auth_mycar_violation /// [XmlElement("scope")] public string Scope { get; set; } } }