public static void Main(string[] args)
string user = "testuser";
string password = "p@s1$w0r=d";
Response data = new Response();
string json = JsonConvert.SerializeObject(data, Formatting.Indented);
public static Response Login(string user, string password)
Response response = new Response();
if (user == "testuser" && password == "p@s1$w0r=d")