chaosbot/ChaosBot/Models/PointsTable.cs

16 lines
313 B
C#

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