Add image type + NotConserved

This commit is contained in:
2024-11-15 16:14:43 +01:00
parent b1c9fdbdf7
commit 54332fab42
9 changed files with 416 additions and 2 deletions

9
src/ImageType.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
namespace App;
enum ImageType: string
{
case Photo = 'foto';
case Survey = 'rilievo';
}