10 lines
226 B
C#
10 lines
226 B
C#
namespace FamilyTreeAPI.Entities;
|
|
|
|
public class PersonPhotoDto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int PersonId { get; set; }
|
|
public string Photo { get; set; }
|
|
public string? PhotoType { get; set; }
|
|
} |