blob: ccbda995bfb7d05b740111ca493b1b6c586d6554 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | #ifndef GENTOO_USER_MODELS
#define GENTOO_USER_MODELS
module Gentoo {
	class User {
		int userid;
		string username;
		string userrealname;
		string useremail;
	};
	exception InvalidCredentials { };
};
#endif
 |