feature: Live Capture (Track B)

This commit is contained in:
voltsrage
2026-06-27 04:23:51 +08:00
parent 01000a2489
commit 88e70b3dbe
30 changed files with 4547 additions and 23 deletions
@@ -0,0 +1,12 @@
public interface IAttestationService
{
/// <summary>
/// Validates that the user is a credentialed clinician and that the
/// password re-confirm matches their stored hash. Throws on failure.
/// </summary>
/// <param name="userId">The authenticated user's ID from JWT claims.</param>
/// <param name="clinicianAttestation">Must be true; false throws ValidationException.</param>
/// <param name="passwordConfirm">Raw password for re-confirmation.</param>
/// <returns>The validated User entity.</returns>
Task<User> ValidateAttestationAsync(Guid userId, bool clinicianAttestation, string passwordConfirm);
}