mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-29 15:00:09 +00:00
9 lines
123 B
PHP
9 lines
123 B
PHP
<?php
|
|
|
|
namespace AIO\Container;
|
|
|
|
enum VersionState: string {
|
|
case Different = 'different';
|
|
case Equal = 'equal';
|
|
}
|