Initial commit
This commit is contained in:
commit
0afdc1d02f
93 changed files with 2453 additions and 0 deletions
11
ConfigMigration/V1ConfigResult.MoneyType.cs
Normal file
11
ConfigMigration/V1ConfigResult.MoneyType.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
namespace CurrencyChanger2.ConfigMigration
|
||||
{
|
||||
public partial class V1ConfigResult
|
||||
{
|
||||
public enum MoneyType
|
||||
{
|
||||
CENT_1 = 0b0001, CENT_5 = 0b0010, CENT_10 = 0b0011, CENT_25 = 0b0100, CENT_50 = 0b0101,
|
||||
DOLLAR_1 = 0b1001, DOLLAR_5 = 0b1010, DOLLAR_10 = 0b1011, DOLLAR_20 = 0b1100, DOLLAR_50 = 0b1101
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue