using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEcoEprintPrinterDeleteModel Data Structure. /// [Serializable] public class AlipayEcoEprintPrinterDeleteModel : AopObject { /// /// 应用ID /// [XmlElement("client_id")] public string ClientId { get; set; } /// /// 应用Secret /// [XmlElement("client_secret")] public string ClientSecret { get; set; } /// /// 应用访问凭证 /// [XmlElement("eprint_token")] public string EprintToken { get; set; } /// /// 终端号 /// [XmlElement("machine_code")] public string MachineCode { get; set; } } }