first push

This commit is contained in:
2026-05-16 21:29:22 +02:00
commit 25edd4fac7
68 changed files with 3475 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
using Microsoft.AspNetCore.Mvc;
namespace ModelsLib
{
public class PhotoUnit
{
public PhotoUnit()
{
}
public PhotoUnit(string photoName, string photoPath,bool isSelected)
{
PhotoName = photoName;
PhotoPath = photoPath;
IsSelected = isSelected;
}
public string PhotoName { get; set; }
public bool IsSelected { get; set; }
public string PhotoPath { get; set; }
}
}