mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
12 lines
347 B
C#
12 lines
347 B
C#
#nullable disable
|
|
namespace NadekoBot.Modules.Gambling.Services;
|
|
|
|
public sealed class EconomyResult
|
|
{
|
|
public decimal Cash { get; init; }
|
|
public decimal Planted { get; init; }
|
|
public decimal Waifus { get; init; }
|
|
public decimal OnePercent { get; init; }
|
|
public decimal Bank { get; init; }
|
|
public long Bot { get; init; }
|
|
} |