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

16 lines
317 B
C#
Raw Normal View History

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