ElectronicOrderProcessResultModel.cs 725 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Fuel.Infrastructure.Payment.Models
  8. {
  9. public class ElectronicOrderProcessResultModel
  10. {
  11. public int Id { get; set; }
  12. [MaxLength(128)]
  13. public string BillNumber { get; set; }
  14. [Required]
  15. public string ResultCode { get; set; }
  16. public string ResultMessage { get; set; }
  17. public string ErrorDetail { get; set; }
  18. /// <summary>
  19. /// Gets or sets the raw result (a string) from 3rd party payment server.
  20. /// </summary>
  21. public string RawResult { get; set; }
  22. }
  23. }