first push
This commit is contained in:
@@ -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; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user