forked from EllieBotDevs/elliebot
12 lines
346 B
C#
12 lines
346 B
C#
|
#nullable disable
|
|||
|
namespace EllieBot.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; }
|
|||
|
}
|