Files
nadekobot/src/NadekoBot/Db/Models/GroupName.cs
2024-04-27 16:03:48 +00:00

11 lines
253 B
C#

#nullable disable
namespace NadekoBot.Db.Models;
public class GroupName : DbEntity
{
public int GuildConfigId { get; set; }
public GuildConfig GuildConfig { get; set; }
public int Number { get; set; }
public string Name { get; set; }
}