Files
RedHotRoast-ios/Assets/RedHotRoast/Define/Model/Config/Game/ExchangeRateModel.cs
T

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;
}
}