mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-03 13:02:03 -04:00
Renamed the bot from KickBot -> ChatBot and removed the reference to Kick in the project name
This commit is contained in:
17
KfChatDotNetBot/Models/DbModels/HowlggBetsDbModel.cs
Normal file
17
KfChatDotNetBot/Models/DbModels/HowlggBetsDbModel.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace KfChatDotNetBot.Models.DbModels;
|
||||
|
||||
public class HowlggBetsDbModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public required int UserId { get; set; }
|
||||
// Per-user bet ID, counts up based on total # of bets
|
||||
public required int BetId { get; set; }
|
||||
// Global bet ID
|
||||
public required long GameId { get; set; }
|
||||
// Cents
|
||||
public required long Bet { get; set; }
|
||||
// Cents
|
||||
public required long Profit { get; set; }
|
||||
public required DateTimeOffset Date { get; set; }
|
||||
public required string Game { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user