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.

ConfirmResult.cs 198 B

12345678910
  1. // Ignore Spelling: Zarin
  2. namespace ZarinPal
  3. {
  4. public class ConfirmResult
  5. {
  6. public object Ref { get; internal set; }
  7. public bool Successful { get; internal set; }
  8. }
  9. }