mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
21 lines
353 B
PHP
21 lines
353 B
PHP
<?php
|
|
/* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
|
|
*/
|
|
class ActionsMulticompany
|
|
{
|
|
/**
|
|
* @param DoliDB $db
|
|
*/
|
|
public function __construct($db)
|
|
{
|
|
}
|
|
/** @ver string */
|
|
public $id;
|
|
/** @ver string */
|
|
public $label;
|
|
/** @var array{stock:string[],referent:string} */
|
|
public $sharings;
|
|
/** @ver DoliDB */
|
|
public $db;
|
|
}
|