Пример #1
0
 public ContinentResponse(string continent, TotalResponse @new, TotalResponse active, TotalResponse deaths)
 {
     Continent = continent;
     New       = @new;
     Active    = active;
     Deaths    = deaths;
 }
Пример #2
0
 public CountryResponse(string continent, string country, TotalResponse @new, TotalResponse active, TotalResponse deaths)
 {
     Continent = continent;
     Country   = country;
     New       = @new;
     Active    = active;
     Deaths    = deaths;
 }