Skip to content

Commit 3066202

Browse files
committed
fix #275
1 parent f5f431f commit 3066202

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Source/FikaAmazonAPI/Utils/Country.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class Country
88
public string VendorCentralURL { get; set; }
99
public string AmazonlUrl { get; set; }
1010

11-
private Country(string code, string name,string domain, string sellercentralUrl,string vendorCentralURL)
11+
private Country(string code, string name, string domain, string sellercentralUrl, string vendorCentralURL)
1212
{
1313
Code = code;
1414
Name = name;
@@ -19,14 +19,15 @@ private Country(string code, string name,string domain, string sellercentralUrl,
1919
AmazonlUrl = $"https://amazon.{domain}";
2020
}
2121

22-
public static Country US { get { return new Country("US", "United States of America","com", "https://sellercentral.amazon.com", "https://vendorcentral.amazon.ca"); } }
22+
public static Country US { get { return new Country("US", "United States of America", "com", "https://sellercentral.amazon.com", "https://vendorcentral.amazon.ca"); } }
2323
public static Country CA { get { return new Country("CA", "Canada", "ca", "https://sellercentral.amazon.ca", "https://vendorcentral.amazon.ca"); } }
2424
public static Country MX { get { return new Country("MX", "Mexico", "com.mx", "https://sellercentral.amazon.com.mx", "https://vendorcentral.amazon.com.mx"); } }
2525
public static Country BR { get { return new Country("BR", "Brazil", "com.br", "https://sellercentral.amazon.com.br", "https://vendorcentral.amazon.com.br"); } }
2626

2727
public static Country ES { get { return new Country("ES", "Spain", "es", "https://sellercentral-europe.amazon.com", "https://vendorcentral.amazon.es"); } }
2828
public static Country GB { get { return new Country("GB", "United Kingdom", "co.uk", "https://sellercentral-europe.amazon.com", "https://vendorcentral.amazon.co.uk"); } }
2929
public static Country FR { get { return new Country("FR", "France", "fr", "https://sellercentral-europe.amazon.com", "https://vendorcentral.amazon.fr"); } }
30+
public static Country BE { get { return new Country("BE", "Belgium", "be", "https://sellercentral-europe.amazon.com", "https://vendorcentral.amazon.eu"); } }
3031
public static Country NL { get { return new Country("NL", "Netherlands", "nl", "https://sellercentral.amazon.nl", "https://vendorcentral.amazon.nl"); } }
3132
public static Country DE { get { return new Country("DE", "Germany", "de", "https://sellercentral-europe.amazon.com", "https://vendorcentral.amazon.de"); } }
3233
public static Country IT { get { return new Country("IT", "Italy", "it", "https://sellercentral-europe.amazon.com", "https://vendorcentral.amazon.it"); } }

0 commit comments

Comments
 (0)