From 647a634d99c37d512cb4589c129985626786e9bd Mon Sep 17 00:00:00 2001 From: Erik Prabowo Kamal Date: Tue, 27 Aug 2019 08:11:20 +0800 Subject: RT user model --- rtuser.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 rtuser.h (limited to 'rtuser.h') diff --git a/rtuser.h b/rtuser.h new file mode 100644 index 0000000..dff3de0 --- /dev/null +++ b/rtuser.h @@ -0,0 +1,28 @@ +#ifndef RTUSER_H +#define RTUSER_H + +typedef struct rt_user { + unsigned int id; + char *name; + char *password; + char *authtoken; + char *emailaddress; + char *organization; + char *realname; + char *nickname; + char *lang; + char *gecos; + char *homephone; + char *workphone; + char *mobilephone; + char *pagerphone; + char *address1; + char *address2; + char *city; + char *state; + char *zip; + char *country; + char *timezone; +} rt_user; + +#endif // RTUSER_H -- cgit v1.2.3