Files
ZooMatch-GP/Assets/ZooMatch/Define/Model/Config/Game/ExchangeRateModel.cs
T

16 lines
330 B
C#

using System.Collections.Generic;
using SGModule.ConfigLoader;
namespace ZooMatch
{
[ConfigKey("ExchangeRate")]
public class ExchangeRate
{
public int ID;
public List<string> CountryKey;
public float Multi;
public string Payicon;
public string Currency;
}
}