Files
PhotoShare/ModelsLib/PhotoUnit.cs
T
2026-05-16 21:29:22 +02:00

28 lines
510 B
C#

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; }
}
}