mirror of
https://github.com/nextcloud/tables.git
synced 2025-07-25 01:28:47 +00:00
15 lines
268 B
PHP
15 lines
268 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Tables\Constants;
|
|
|
|
class UsergroupType {
|
|
public const USER = 0;
|
|
public const GROUP = 1;
|
|
public const CIRCLE = 2;
|
|
}
|