mirror-chatterino2/twitchemotevalue.h
2017-01-18 21:30:23 +01:00

36 lines
416 B
C++

#ifndef TWITCHEMOTEVALUE_H
#define TWITCHEMOTEVALUE_H
#include "QString"
namespace chatterino {
struct TwitchEmoteValue {
public:
int
getSet()
{
return set;
}
int
getId()
{
return id;
}
const QString &
getChannelName()
{
return channelName;
}
private:
int set;
int id;
QString channelName;
};
}
#endif // TWITCHEMOTEVALUE_H