1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 19:14:47 +02:00
Files
anope/include/modules/set_misc.h
T
2025-01-14 13:41:19 +00:00

21 lines
296 B
C++

/*
*
* (C) 2003-2025 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*/
#pragma once
struct MiscData
{
Anope::string object;
Anope::string name;
Anope::string data;
virtual ~MiscData() = default;
protected:
MiscData() = default;
};