forked from EllieBotDevs/elliebot
9 lines
No EOL
208 B
C#
9 lines
No EOL
208 B
C#
#nullable disable
|
|
namespace EllieBot.Db.Models;
|
|
|
|
public class GamblingStats : DbEntity
|
|
{
|
|
public string Feature { get; set; }
|
|
public decimal Bet { get; set; }
|
|
public decimal PaidOut { get; set; }
|
|
} |