diff options
Diffstat (limited to 'lib/private/Color.php')
-rw-r--r-- | lib/private/Color.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/private/Color.php b/lib/private/Color.php new file mode 100644 index 00000000000..d97c519e552 --- /dev/null +++ b/lib/private/Color.php @@ -0,0 +1,18 @@ +<?php + +/** + * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +namespace OC; + +class Color { + public $r; + public $g; + public $b; + public function __construct($r, $g, $b) { + $this->r = $r; + $this->g = $g; + $this->b = $b; + } +} |