chaosbot/ChaosBot/Models/LevelUp.cs
2020-08-03 22:24:40 -04:00

16 lines
314 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace ChaosBot.Models
{
public partial class LevelUp
{
public int? Id { get; set; }
public long? UserId { get; set; }
public long? GuildId { get; set; }
public long? Experience { get; set; }
}
}