Color.php 298 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OC;
  7. class Color {
  8. public $r;
  9. public $g;
  10. public $b;
  11. public function __construct($r, $g, $b) {
  12. $this->r = $r;
  13. $this->g = $g;
  14. $this->b = $b;
  15. }
  16. }