Model/src/EntityPropertyMode.php

11 lines
139 B
PHP
Raw Normal View History

2024-11-08 17:12:46 +01:00
<?php
namespace Nest\Model;
enum EntityPropertyMode: string
{
case LOCAL = "local";
case RELATED = "related";
case PIVOT = "pivot";
}