From b2e84c86e4372fc456bbcc5f8de942c5aefe7249 Mon Sep 17 00:00:00 2001 From: Josh Creek Date: Sun, 23 May 2021 21:39:17 +0100 Subject: [PATCH] feat(*): Handle user postal code input --- CityFinder/Program.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CityFinder/Program.cs b/CityFinder/Program.cs index 4b300a2..84227a1 100644 --- a/CityFinder/Program.cs +++ b/CityFinder/Program.cs @@ -43,6 +43,9 @@ namespace CityFinder InitialSetup(); string countryInput = GetUserCountryInput(); + + Console.WriteLine("Enter a zip/postal code:"); + string postalCodeInput = Console.ReadLine(); /// /// This method sets up the json config file and sets the user-agent header on the HttpClient. ///