You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
502 B

  1. using System.Xml.Serialization;
  2. namespace Cebuana.Model
  3. {
  4. [XmlRoot(ElementName = "TransactionDetails")]
  5. public class TransactionDetails
  6. {
  7. [XmlElement(ElementName = "AccountNumber")]
  8. public string AccountNumber { get; set; }
  9. [XmlElement(ElementName = "Amount")]
  10. public string Amount { get; set; }
  11. [XmlElement(ElementName = "Currency")]
  12. public string Currency { get; set; }
  13. [XmlElement(ElementName = "PurposeOfTransaction")]
  14. public string PurposeOfTransaction{ get; set; }
  15. }
  16. }