Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

ZarinPalPaymentRequestModel.cs 297 B

před 2 týdny
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. }