diff --git a/lib/public/groupinterface.php b/lib/public/groupinterface.php new file mode 100644 index 0000000000..9783302811 --- /dev/null +++ b/lib/public/groupinterface.php @@ -0,0 +1,31 @@ +. +* +*/ + +/** + * Public interface of ownCloud for apps to use. + * Group Class. + * + */ + +namespace OCP; + +interface GroupInterface extends \OC_Group_Interface {} \ No newline at end of file diff --git a/lib/public/userinterface.php b/lib/public/userinterface.php new file mode 100644 index 0000000000..b73a8f8d8b --- /dev/null +++ b/lib/public/userinterface.php @@ -0,0 +1,31 @@ +. +* +*/ + +/** + * Public interface of ownCloud for apps to use. + * User Class. + * + */ + +namespace OCP; + +interface UserInterface extends \OC_User_Interface {} \ No newline at end of file