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.

17 lines
334 B

6 years ago
  1. //
  2. // Branch.swift
  3. // GMERemittance
  4. //
  5. // Created by Sujal on 2/17/18.
  6. // Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. struct Branch: Decodable {
  9. var branchId: String!
  10. var branchCode: String!
  11. var address: String?
  12. var phone: String?
  13. var bankId: String!
  14. var status: String?
  15. }