mirror of
https://github.com/nextcloud/server.git
synced 2026-02-18 10:19:45 -05:00
18 lines
269 B
PHP
18 lines
269 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OC;
|
|
|
|
class Color {
|
|
public function __construct(
|
|
public $r,
|
|
public $g,
|
|
public $b,
|
|
) {
|
|
}
|
|
}
|