Renamed the bot from KickBot -> ChatBot and removed the reference to Kick in the project name

This commit is contained in:
barelyprofessional
2024-07-26 16:50:39 +08:00
parent f4db00246a
commit f9d87220d2
46 changed files with 84 additions and 84 deletions
@@ -0,0 +1,9 @@
namespace KfChatDotNetBot.Models.DbModels;
public class JuicerDbModel
{
public int Id { get; set; }
public required UserDbModel User { get; set; }
public float Amount { get; set; }
public DateTimeOffset JuicedAt { get; set; }
}