mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
10 lines
264 B
C#
10 lines
264 B
C#
#nullable disable
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace NadekoBot.Modules.Permissions;
|
|
|
|
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
|
public readonly struct CleverBotResponseStr
|
|
{
|
|
public const string CLEVERBOT_RESPONSE = "cleverbot:response";
|
|
} |