Files
nadekobot/NadekoBot.Core/Services/Database/Models/GroupName.cs
2021-09-06 21:29:22 +02:00

12 lines
289 B
C#

namespace NadekoBot.Core.Services.Database.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; }
}
}