mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 04:22:04 -04:00
Renamed the bot from KickBot -> ChatBot and removed the reference to Kick in the project name
This commit is contained in:
21
KfChatDotNetBot/Models/DbModels/UserDbModel.cs
Normal file
21
KfChatDotNetBot/Models/DbModels/UserDbModel.cs
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user