mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
12 lines
289 B
C#
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; }
|
|
}
|
|
}
|