forked from EllieBotDevs/elliebot
10 lines
No EOL
263 B
C#
10 lines
No EOL
263 B
C#
#nullable disable
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace EllieBot.Modules.Permissions;
|
|
|
|
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
|
public readonly struct CleverBotResponseStr
|
|
{
|
|
public const string CLEVERBOT_RESPONSE = "cleverbot:response";
|
|
} |