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