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.

15 lines
431 B

  1. using Common.Models.RequestResponse;
  2. using System.ComponentModel.DataAnnotations;
  3. namespace Common.Models.TxnModel
  4. {
  5. public class CancelTxn : CommonRequest
  6. {
  7. public string CancelReason { get; set; }
  8. [Required]
  9. public string PartnerPinNo { get; set; }
  10. public string PartnerCode { get; set; }
  11. public string Password { get; set; }
  12. public string UserID { get; set; }
  13. }
  14. }