2026-04-22 11:13:16 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using SGModule.ConfigLoader;
|
|
|
|
|
|
2026-04-27 11:20:13 +08:00
|
|
|
namespace RedHotRoast
|
2026-04-22 11:13:16 +08:00
|
|
|
{
|
|
|
|
|
[ConfigKey("ExchangeRate")]
|
|
|
|
|
|
|
|
|
|
public class ExchangeRate
|
|
|
|
|
{
|
|
|
|
|
public int ID;
|
|
|
|
|
public List<string> CountryKey;
|
|
|
|
|
public float Multi;
|
|
|
|
|
public string Payicon;
|
|
|
|
|
public string Currency;
|
|
|
|
|
}
|
|
|
|
|
}
|