using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace Cebuana.Model { public class CancelTransaction { public PartnerCredentials PartnerCredentials { get; set; } public TransactionDetails TranDetail { get; set; } public class TransactionDetails { public string ControlNumber { get; set; } public string Reason { get; set; } } [XmlRoot(ElementName = "TransactionResult", Namespace = "http://schemas.datacontract.org/2004/07/CebuanaRemittanceDirectUpdater")] public class TransactionResult { [XmlElement(ElementName = "Code", Namespace = "http://schemas.datacontract.org/2004/07/CebuanaRemittanceDirectUpdater")] public string Code { get; set; } [XmlElement(ElementName = "Message", Namespace = "http://schemas.datacontract.org/2004/07/CebuanaRemittanceDirectUpdater")] public string Message { get; set; } } } }