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

7 lines
199 B
C#

namespace Application.Endpoints.MedicalHistories;
public class MedicalHistoryAuthorisationModel
{
public string Id { get; set; }
public List<string> Authorisation { get; set; } = new();
}