mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
14 lines
231 B
C
14 lines
231 B
C
#ifndef SELECTED_VOLUME_INFO_H
|
|
#define SELECTED_VOLUME_INFO_H
|
|
|
|
#include <QString>
|
|
|
|
struct SelectedVolumeInfo {
|
|
QString id;
|
|
int numIssues;
|
|
QString publisher;
|
|
QString description;
|
|
};
|
|
|
|
#endif // SELECTED_VOLUME_INFO_H
|