<?php

declare(strict_types=1);

/*
 * This file is part of Contao.
 *
 * (c) Leo Feyer
 *
 * @license LGPL-3.0-or-later
 */

namespace vonRotenberg\WeinanlieferungBundle\Security;

final class WeinanlieferungPermissions
{
    public const USER_CAN_EDIT_STANDORTE = 'contao_user.standorts';
    public const USER_CAN_EDIT_RESERVATIONS = 'contao_user.reservationp.edit';
    public const USER_CAN_DELETE_RESERVATIONS = 'contao_user.reservationp.delete';
}