15 lines
256 B
C++
15 lines
256 B
C++
#ifndef TICKET_H
|
|
#define TICKET_H
|
|
|
|
#include <string>
|
|
|
|
typedef struct {
|
|
unsigned long id;
|
|
std::string title;
|
|
std::string description;
|
|
std::string status;
|
|
std::string created_at;
|
|
std::string updated_at;
|
|
} ticket_t;
|
|
|
|
#endif // TICKET_H
|