Files
FACULTATE-HEALTHCARE_MANAGER/backend/Application/Endpoints/MedicalHistories/FileManagement/MedicalHistoryUpdateDto.cs
T

7 lines
188 B
C#

namespace Application.Endpoints.MedicalHistories.FileManagement;
public class MedicalHistoryUpdateDto
{
public Guid Id { get; set; }
public byte[] Content { get; set; } = [];
}