mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
8 lines
180 B
C#
8 lines
180 B
C#
#nullable disable
|
|
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class BanTemplate : DbEntity
|
|
{
|
|
public ulong GuildId { get; set; }
|
|
public string Text { get; set; }
|
|
} |