16 lines
296 B
C#
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();
|
|
}
|
|
}
|