forked from EllieBotDevs/elliebot
11 lines
252 B
C#
11 lines
252 B
C#
|
#nullable disable
|
||
|
namespace EllieBot.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; }
|
||
|
}
|