/home/sylamedg/www/wp-content/plugins/woo-usps-simple-shipping/src/Model/ServiceFamily.php
<?php declare(strict_types=1);

namespace Dgm\UspsSimple\Model;


class ServiceFamily
{
    /**
     * @var string
     * @readonly
     */
    public $id;

    /**
     * @var string
     */
    public $title;

    /**
     * @var int
     */
    public $sort;

    /**
     * @var array<Service>
     * @readonly
     */
    public $services;


    public function __construct(string $id, string $title, array $services)
    {
        $this->id = $id;
        $this->title = $title;
        $this->services = $services;
    }
}