2021-07-21 09:48:23 -04:00

16 lines
296 B
C#

using Nerd_STF.Lists;
using System;
namespace NerdsTeaserBot.Modules.Models
{
[Serializable]
public class User
{
public Mute currentMute;
public Level level;
public int tickets;
public ulong userID;
public List<Warn> warns = new();
}
}