mirror of
https://github.com/sigmasternchen/CShore
synced 2025-03-15 16:18:56 +00:00
9 lines
106 B
C
9 lines
106 B
C
#ifndef ENTITIES_H
|
|
#define ENTITIES_H
|
|
|
|
typedef struct {
|
|
char* username;
|
|
char* github;
|
|
} user_t;
|
|
|
|
#endif
|