-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
276 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Nager.Country.Currencies | ||
{ | ||
public class GnfCurrency : ICurrency | ||
{ | ||
public string Symbol => "FG"; | ||
|
||
public string Singular => null; | ||
|
||
public string Plural => null; | ||
|
||
public string IsoCode => "GNF"; | ||
|
||
public string NumericCode => "324"; | ||
|
||
public string Name => "Guinean franc"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Nager.Country.Currencies | ||
{ | ||
public class GydCurrency : ICurrency | ||
{ | ||
public string Symbol => "$"; | ||
|
||
public string Singular => "dollar"; | ||
|
||
public string Plural => "dollar"; | ||
|
||
public string IsoCode => "GYD"; | ||
|
||
public string NumericCode => "328"; | ||
|
||
public string Name => "Guyanese dollar"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Nager.Country.Currencies | ||
{ | ||
public class LslCurrency : ICurrency | ||
{ | ||
public string Symbol => "L"; | ||
|
||
public string Singular => "Loti"; | ||
|
||
public string Plural => "Maloti"; | ||
|
||
public string IsoCode => "LSL"; | ||
|
||
public string NumericCode => "426"; | ||
|
||
public string Name => "Lesotho loti"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Nager.Country.Currencies | ||
{ | ||
public class MurCurrency : ICurrency | ||
{ | ||
public string Symbol => "₨"; | ||
|
||
public string Singular => null; | ||
|
||
public string Plural => null; | ||
|
||
public string IsoCode => "MUR"; | ||
|
||
public string NumericCode => "480"; | ||
|
||
public string Name => "Mauritian rupee"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Nager.Country.Currencies | ||
{ | ||
public class MwkCurrency : ICurrency | ||
{ | ||
public string Symbol => "K"; | ||
|
||
public string Singular => "kwacha"; | ||
|
||
public string Plural => "kwacha"; | ||
|
||
public string IsoCode => "MWK"; | ||
|
||
public string NumericCode => "454"; | ||
|
||
public string Name => "Malawian kwacha"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Nager.Country.Currencies | ||
{ | ||
public class NadCurrency : ICurrency | ||
{ | ||
public string Symbol => "$"; | ||
|
||
public string Singular => null; | ||
|
||
public string Plural => null; | ||
|
||
public string IsoCode => "NAD"; | ||
|
||
public string NumericCode => "516"; | ||
|
||
public string Name => "Namibian dollar"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Nager.Country.Currencies | ||
{ | ||
public class PgkCurrency : ICurrency | ||
{ | ||
public string Symbol => "K"; | ||
|
||
public string Singular => "kina"; | ||
|
||
public string Plural => "kina"; | ||
|
||
public string IsoCode => "PGK"; | ||
|
||
public string NumericCode => "598"; | ||
|
||
public string Name => "Papua New Guinean kina"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Nager.Country.Currencies | ||
{ | ||
public class SbdCurrency : ICurrency | ||
{ | ||
public string Symbol => "$"; | ||
|
||
public string Singular => null; | ||
|
||
public string Plural => null; | ||
|
||
public string IsoCode => "SBD"; | ||
|
||
public string NumericCode => "090"; | ||
|
||
public string Name => "Solomon Islands dollar"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Nager.Country.Currencies | ||
{ | ||
public class ShpCurrency : ICurrency | ||
{ | ||
public string Symbol => "£"; | ||
|
||
public string Singular => null; | ||
|
||
public string Plural => null; | ||
|
||
public string IsoCode => "SHP"; | ||
|
||
public string NumericCode => "654"; | ||
|
||
public string Name => "Saint Helena pound"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Nager.Country.Currencies | ||
{ | ||
public class SllCurrency : ICurrency | ||
{ | ||
public string Symbol => "Le"; | ||
|
||
public string Singular => "leone"; | ||
|
||
public string Plural => "leones"; | ||
|
||
public string IsoCode => "SLL"; | ||
|
||
public string NumericCode => "694"; | ||
|
||
public string Name => "Sierra Leonean leone"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Nager.Country.Currencies | ||
{ | ||
public class StdCurrency : ICurrency | ||
{ | ||
public string Symbol => "Db"; | ||
|
||
public string Singular => "dobra"; | ||
|
||
public string Plural => "dobra"; | ||
|
||
public string IsoCode => "STD"; | ||
|
||
public string NumericCode => "678"; | ||
|
||
public string Name => "São Tomé and Príncipe dobra"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Nager.Country.Currencies | ||
{ | ||
public class SvcCurrency : ICurrency | ||
{ | ||
public string Symbol => "₡"; | ||
|
||
public string Singular => "colón"; | ||
|
||
public string Plural => "colón"; | ||
|
||
public string IsoCode => "SVC"; | ||
|
||
public string NumericCode => "222"; | ||
|
||
public string Name => "Salvadoran colón"; | ||
} | ||
} |
Oops, something went wrong.