public ContinentResponse(string continent, TotalResponse @new, TotalResponse active, TotalResponse deaths) { Continent = continent; New = @new; Active = active; Deaths = deaths; }
public CountryResponse(string continent, string country, TotalResponse @new, TotalResponse active, TotalResponse deaths) { Continent = continent; Country = country; New = @new; Active = active; Deaths = deaths; }