18 lines
270 B
C++
18 lines
270 B
C++
#ifndef TICKET_H
|
|
#define TICKET_H
|
|
|
|
#include <string>
|
|
#include <ctime>
|
|
|
|
using namespace std;
|
|
|
|
typedef struct {
|
|
unsigned long id;
|
|
string title;
|
|
string description;
|
|
string status;
|
|
string created_at;
|
|
string updated_at;
|
|
} ticket_t;
|
|
|
|
#endif // TICKET_H
|