wip: booking process
This commit is contained in:
@@ -1,11 +1,20 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\BusProNet\Model;
|
||||
|
||||
use Symfony\Component\Serializer\Attribute\Context;
|
||||
use Symfony\Component\Serializer\Attribute\Groups;
|
||||
use Symfony\Component\Serializer\Normalizer\DateTimeNormalizer;
|
||||
|
||||
/**
|
||||
* Represents a room configuration with capacity, pricing, and availability information.
|
||||
*
|
||||
* This class handles room data including category, board options, capacity limits,
|
||||
* pricing structure, and participant mapping. It provides serialization groups
|
||||
* for different API contexts and booking management.
|
||||
*/
|
||||
class Room
|
||||
{
|
||||
#[Groups(['api:list', 'api:single'])]
|
||||
|
||||
Reference in New Issue
Block a user