1234567891011121314151617181920 |
- //
- // DataModel.swift
- // Comedores Sociales
- //
- // Created by Hector Carrion on 11/8/20.
- //
-
- import Foundation
-
- let serverAddress: String = "http://161.35.60.201/"
-
- class Authentication: Codable {
- var username: String
- var password: String
-
- init(email: String, password: String) {
- self.username = email
- self.password = password
- }
- }
|