using Core.Annotations;
namespace Core.Helpers;
[Injectable]
public class PaymentHelper
{
///
/// Is the passed in tpl money (also checks custom currencies in inventoryConfig.customMoneyTpls)
///
///
///
public bool IsMoneyTpl(string tpl)
{
throw new NotImplementedException();
}
///
/// Gets currency TPL from TAG
///
///
///
public string GetCurrency(string currency)
{
throw new NotImplementedException();
}
}