mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
9 lines
224 B
C#
9 lines
224 B
C#
#nullable disable
|
|
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class GamblingStats : DbEntity
|
|
{
|
|
public string Feature { get; set; }
|
|
public decimal Bet { get; set; }
|
|
public decimal PaidOut { get; set; }
|
|
} |