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.

ZarinPalPaymentRequestModel.cs 297 B

пре 2 недеља
123456789101112
  1. // Ignore Spelling: Zarin
  2. namespace ZarinPal
  3. {
  4. internal class ZarinPalPaymentRequestModel
  5. {
  6. public object Amount { get; set; }
  7. public object MerchantID { get; set; }
  8. public string Description { get; set; }
  9. public string CallbackURL { get; set; }
  10. }
  11. }