adding migration for person photo

This commit is contained in:
2025-10-13 22:38:16 +11:00
parent ee19397f59
commit c62ae2cd42
6 changed files with 615 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
namespace FamilyTreeAPI.Models
{
public class PersonPhoto
{
public int Id { get; set; }
public int PersonId { get; set; }
public string Photo { get; set; }
public byte[] ImagePhoto { get; set; }
}
}