mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
16 lines
362 B
C#
16 lines
362 B
C#
using NadekoBot.Modules.Gambling.Services;
|
|
|
|
namespace NadekoBot.Modules.Gambling;
|
|
|
|
public sealed class CurrencyProvider : ICurrencyProvider, INService
|
|
{
|
|
private readonly GamblingConfigService _cs;
|
|
|
|
public CurrencyProvider(GamblingConfigService cs)
|
|
{
|
|
_cs = cs;
|
|
}
|
|
|
|
public string GetCurrencySign()
|
|
=> _cs.Data.Currency.Sign;
|
|
} |