Make an all patients view.

This commit is contained in:
Josh-Heaps
2026-02-13 10:11:44 -07:00
parent cfd6bb530b
commit 91ef4f41dd
17 changed files with 315 additions and 183 deletions
@@ -3,6 +3,7 @@ namespace Media.JoshHeaps.Net.Models;
public class MedicalDoctor
{
public long Id { get; set; }
public long PersonId { get; set; }
public string Name { get; set; } = string.Empty;
public string? Specialty { get; set; }
public string? Phone { get; set; }
@@ -4,6 +4,7 @@ public class TimelineEvent
{
public string EventType { get; set; } = "";
public long Id { get; set; }
public long PersonId { get; set; }
public string? Label { get; set; }
public string? Detail { get; set; }
public string? SubType { get; set; }