Files
FACULTATE-HEALTHCARE_MANAGER/backend/Application/Endpoints/MedicalHistories/MedicalHistoryAuthorisationModel.cs
T
2024-04-08 02:31:05 +03:00

7 lines
212 B
C#

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