Fix so people are scoped to users

This commit is contained in:
Josh-Heaps
2026-02-12 15:14:49 -07:00
parent c173677f57
commit cfd6bb530b
8 changed files with 390 additions and 11 deletions
@@ -9,3 +9,9 @@ public class MedicalPerson
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}
public class PersonAccessUser
{
public long Id { get; set; }
public string Username { get; set; } = string.Empty;
}