16 lines
318 B
C#
16 lines
318 B
C#
using System.Collections.Generic;
|
|
using SGModule.ConfigLoader;
|
|
|
|
namespace RedHotRoast
|
|
{
|
|
[ConfigKey("ExchangeRate")]
|
|
|
|
public class ExchangeRate
|
|
{
|
|
public int ID;
|
|
public List<string> CountryKey;
|
|
public float Multi;
|
|
public string Payicon;
|
|
public string Currency;
|
|
}
|
|
} |