7 lines
199 B
C#
7 lines
199 B
C#
namespace Application.Endpoints.MedicalHistories;
|
|
|
|
public class MedicalHistoryAuthorisationModel
|
|
{
|
|
public string Id { get; set; }
|
|
public List<string> Authorisation { get; set; } = new();
|
|
} |