mirror of
https://github.com/YACReader/yacreader
synced 2026-04-12 15:49:53 -04:00
15 lines
204 B
C
15 lines
204 B
C
#ifndef THEME_META_H
|
|
#define THEME_META_H
|
|
|
|
#include "theme_variant.h"
|
|
|
|
#include <QString>
|
|
|
|
struct ThemeMeta {
|
|
QString id;
|
|
QString displayName;
|
|
ThemeVariant variant;
|
|
};
|
|
|
|
#endif // THEME_META_H
|