Last active
February 10, 2020 10:54
-
-
Save bharathreddys77/379acb3cdf7a21419c9759339b222a1e to your computer and use it in GitHub Desktop.
API Request
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct LoginRequest:Encodable { | |
var username:String? | |
var password:String? | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct LoginResponse:Decodable { | |
var status:Bool? | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment