15 lines
304 B
C#
15 lines
304 B
C#
namespace FamilyTreeAPI.Models
|
|
{
|
|
public class PersonPhoto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int PersonId { get; set; }
|
|
public string Photo { get; set; }
|
|
public string? PhotoType { get; set; }
|
|
|
|
public byte[] ImagePhoto { get; set; }
|
|
|
|
}
|
|
}
|