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