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

View File

@@ -0,0 +1,21 @@
using System.ComponentModel;
namespace KfChatDotNetBot.Models.DbModels;
public class UserDbModel
{
public int Id { get; set; }
public required string KfUsername { get; set; }
public int KfId { get; set; }
public UserRight UserRight { get; set; } = UserRight.Guest;
public bool Ignored { get; set; } = false;
}
public enum UserRight
{
Admin = 1000,
[Description("True and Honest")]
TrueAndHonest = 100,
Guest = 10,
Loser = 0
}