14 lines
273 B
C
14 lines
273 B
C
|
//
|
||
|
// Created by HW on 2023/07/26.
|
||
|
//
|
||
|
|
||
|
#ifndef OFFICEASSISTANT_BUTTONSTRUCT_H
|
||
|
#define OFFICEASSISTANT_BUTTONSTRUCT_H
|
||
|
#include <QString>
|
||
|
typedef struct taButtonStruct{
|
||
|
int index;
|
||
|
QString logo;
|
||
|
QString text;
|
||
|
}ButtonStruct;
|
||
|
#endif //OFFICEASSISTANT_BUTTONSTRUCT_H
|