No Description

NetworkingModel.swift 369B

1234567891011121314151617181920
  1. //
  2. // DataModel.swift
  3. // Comedores Sociales
  4. //
  5. // Created by Hector Carrion on 11/8/20.
  6. //
  7. import Foundation
  8. let serverAddress: String = "http://161.35.60.201/"
  9. class Authentication: Codable {
  10. var username: String
  11. var password: String
  12. init(email: String, password: String) {
  13. self.username = email
  14. self.password = password
  15. }
  16. }