forked from EllieBotDevs/elliebot
16 lines
No EOL
360 B
C#
16 lines
No EOL
360 B
C#
using EllieBot.Modules.Gambling.Services;
|
|
|
|
namespace EllieBot.Modules.Gambling;
|
|
|
|
public sealed class CurrencyProvider : ICurrencyProvider, IEService
|
|
{
|
|
private readonly GamblingConfigService _cs;
|
|
|
|
public CurrencyProvider(GamblingConfigService cs)
|
|
{
|
|
_cs = cs;
|
|
}
|
|
|
|
public string GetCurrencySign()
|
|
=> _cs.Data.Currency.Sign;
|
|
} |